#include <Uefi.h>
#include <Guid/FileInfo.h>
#include <Protocol/SimpleFileSystem.h>
#include <Library/UefiLib.h>
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/BaseOverflowLib.h>
#include <Library/DebugLib.h>
#include <Library/DevicePathLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/OcDevicePathLib.h>
#include <Library/OcFileLib.h>
Go to the source code of this file.
Functions | |
VOID * | OcGetFileInfo (IN EFI_FILE_PROTOCOL *File, IN EFI_GUID *InformationType, IN UINTN MinFileInfoSize, OUT UINTN *RealFileInfoSize OPTIONAL) |
Copyright (C) 2019, vit9696. All rights reserved.
All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Definition in file GetFileInfo.c.
VOID * OcGetFileInfo | ( | IN EFI_FILE_PROTOCOL * | File, |
IN EFI_GUID * | InformationType, | ||
IN UINTN | MinFileInfoSize, | ||
OUT UINTN *RealFileInfoSize | OPTIONAL ) |
Get file information of specified type.
[in] | File | A pointer to file handle. |
[in] | InformationType | A pointer to file info GUID. |
[in] | MinFileInfoSize | Minimal size of the info provided. |
[out] | RealFileInfoSize | Actual info size read (optional). |
read | file info or NULL. |
Definition at line 33 of file GetFileInfo.c.