mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-05-29 17:38:35 +00:00

This is the first stage of porting the MokManager UI to the UI code used by the Linux Foundation UEFI loader.
22 lines
829 B
C
22 lines
829 B
C
EFI_STATUS
|
|
simple_file_open (EFI_HANDLE image, CHAR16 *name, EFI_FILE **file, UINT64 mode);
|
|
EFI_STATUS
|
|
simple_file_open_by_handle(EFI_HANDLE device, CHAR16 *name, EFI_FILE **file, UINT64 mode);
|
|
EFI_STATUS
|
|
simple_file_read_all(EFI_FILE *file, UINTN *size, void **buffer);
|
|
EFI_STATUS
|
|
simple_file_write_all(EFI_FILE *file, UINTN size, void *buffer);
|
|
void
|
|
simple_file_close(EFI_FILE *file);
|
|
EFI_STATUS
|
|
simple_dir_read_all(EFI_HANDLE image, CHAR16 *name, EFI_FILE_INFO **Entries,
|
|
int *count);
|
|
EFI_STATUS
|
|
simple_dir_filter(EFI_HANDLE image, CHAR16 *name, CHAR16 *filter,
|
|
CHAR16 ***result, int *count, EFI_FILE_INFO **entries);
|
|
void
|
|
simple_file_selector(EFI_HANDLE *im, CHAR16 **title, CHAR16 *name,
|
|
CHAR16 *filter, CHAR16 **result);
|
|
EFI_STATUS
|
|
simple_volume_selector(CHAR16 **title, CHAR16 **selected, EFI_HANDLE *h);
|