OpenCore
1.0.4
OpenCore Bootloader
|
Go to the source code of this file.
Functions | |
STATIC EFI_STATUS | GetLabel (IN CONST EFI_FS *FileSystem, IN OUT CHAR16 **Label) |
EFI_STATUS EFIAPI | FileGetInfo (IN EFI_FILE_PROTOCOL *This, IN EFI_GUID *Type, IN OUT UINTN *Len, OUT VOID *Data) |
EFI_STATUS EFIAPI | FileSetInfo (IN EFI_FILE_PROTOCOL *This, IN EFI_GUID *InformationType, IN UINTN BufferSize, IN VOID *Buffer) |
Copyright (c) 2022, Mikhail Krichanov. All rights reserved. SPDX-License-Identifier: BSD-3-Clause
Functional and structural descriptions follow NTFS Documentation by Richard Russon and Yuval Fledel
Definition in file Info.c.
EFI_STATUS EFIAPI FileGetInfo | ( | IN EFI_FILE_PROTOCOL * | This, |
IN EFI_GUID * | Type, | ||
IN OUT UINTN * | Len, | ||
OUT VOID * | Data ) |
Returns file info, system info, or the label of a volume depending on information type specified.
This | Pointer to this instance of file protocol |
Type | Pointer to information type requested |
Len | Pointer to size of buffer |
Data | Pointer to buffer for returned info |
EFI_STATUS | Status of the operation |
EFI_STATUS EFIAPI FileSetInfo | ( | IN EFI_FILE_PROTOCOL * | This, |
IN EFI_GUID * | InformationType, | ||
IN UINTN | BufferSize, | ||
IN VOID * | Buffer ) |