2025-02-05 13:02:26 -08:00
|
|
|
#ifndef __LIB_UEFI_BLOCKIO_PROTOCOL_H_
|
|
|
|
|
#define __LIB_UEFI_BLOCKIO_PROTOCOL_H_
|
|
|
|
|
|
2025-05-29 11:01:37 -07:00
|
|
|
#include <uefi/types.h>
|
2025-02-05 13:02:26 -08:00
|
|
|
|
|
|
|
|
EfiStatus open_block_device(EfiHandle handle, void **intf);
|
|
|
|
|
|
2025-07-14 12:19:51 -07:00
|
|
|
EfiStatus list_block_devices(size_t *num_handles, EfiHandle **buf);
|
|
|
|
|
|
2025-02-05 13:02:26 -08:00
|
|
|
#endif
|