44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
/** @file
|
|
Protocol to install WPBT ACPI table
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2012, 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 _ACPI_WPBT_PROTOCOL_H_
|
|
#define _ACPI_WPBT_PROTOCOL_H_
|
|
|
|
#define EFI_ACPI_WPBT_PROTOCOL_GUID \
|
|
{ \
|
|
0x720AD23B, 0x0375, 0x43e8, { 0x89, 0x34, 0xFC, 0x75, 0x13, 0xDB, 0xBA, 0x39 } \
|
|
}
|
|
|
|
//
|
|
// Forward reference for pure ANSI compatability
|
|
//
|
|
typedef struct _EFI_ACPI_WPBT_PROTOCOL EFI_ACPI_WPBT_PROTOCOL;
|
|
|
|
typedef
|
|
EFI_STATUS
|
|
(EFIAPI *EFI_LOCATE_PLATFORM_BINARY)(
|
|
IN EFI_ACPI_WPBT_PROTOCOL *This,
|
|
IN EFI_GUID *FileGuid,
|
|
IN UINT16 ArgLength,
|
|
IN CHAR16 *Arg
|
|
);
|
|
|
|
struct _EFI_ACPI_WPBT_PROTOCOL {
|
|
EFI_LOCATE_PLATFORM_BINARY LocatePlatformBinary;
|
|
};
|
|
|
|
extern EFI_GUID gEfiAcpiWpbtProtocolGuid;
|
|
|
|
#endif
|