diff options
Diffstat (limited to 'Include/Guid/LegacyBios.h')
-rw-r--r-- | Include/Guid/LegacyBios.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Include/Guid/LegacyBios.h b/Include/Guid/LegacyBios.h new file mode 100644 index 0000000..9f5a971 --- /dev/null +++ b/Include/Guid/LegacyBios.h @@ -0,0 +1,24 @@ +#ifndef _LEGACY_BIOS_H_ +#define _LEGACY_BIOS_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +/// +/// The Global ID for the Legacy BIOS GUID that must be installed onto the ImageHandle +/// of any module follows the EFI Driver Model and uses the Int86() or FarCall() +/// services of the Legacy BIOS Protocol to produce a standard UEFI I/O Protocol. +/// +#define EFI_LEGACY_BIOS_GUID \ + { \ + 0x2e3044ac, 0x879f, 0x490f, {0x97, 0x60, 0xbb, 0xdf, 0xaf, 0x69, 0x5f, 0x50 } \ + } + +extern EFI_GUID gEfiLegacyBiosGuid; + +#ifdef __cplusplus +} +#endif + +#endif |