32 lines
1.0 KiB
C
32 lines
1.0 KiB
C
/** @file
|
|
Header file for FMP DeviceLib extension.
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2020, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef __FMP_DEVICE_LIB_EX__
|
|
#define __FMP_DEVICE_LIB_EX__
|
|
|
|
#include <Protocol/FirmwareManagement.h>
|
|
|
|
/**
|
|
A hook on descriptor populated.
|
|
|
|
@param[in, out] ImageInfo A pointer to the buffer in which firmware places the current image(s)
|
|
information. The information is an array of EFI_FIRMWARE_IMAGE_DESCRIPTORs.
|
|
**/
|
|
VOID
|
|
FmpDeviceDescriptorPopulated (
|
|
IN OUT EFI_FIRMWARE_IMAGE_DESCRIPTOR *Descriptor
|
|
);
|
|
|
|
#endif
|