xref: /illumos-gate/usr/src/boot/efi/include/Guid/DxeServices.h (revision f334afcfaebea1b7dc3430015651d8d748fa8a3e)
1*f334afcfSToomas Soome /** @file
2*f334afcfSToomas Soome   GUID used to identify the DXE Services Table
3*f334afcfSToomas Soome 
4*f334afcfSToomas Soome   Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
5*f334afcfSToomas Soome   SPDX-License-Identifier: BSD-2-Clause-Patent
6*f334afcfSToomas Soome 
7*f334afcfSToomas Soome   @par Revision Reference:
8*f334afcfSToomas Soome   GUID introduced in PI Version 1.0.
9*f334afcfSToomas Soome 
10*f334afcfSToomas Soome **/
11*f334afcfSToomas Soome 
12*f334afcfSToomas Soome #ifndef __DXE_SERVICES_GUID_H__
13*f334afcfSToomas Soome #define __DXE_SERVICES_GUID_H__
14*f334afcfSToomas Soome 
15*f334afcfSToomas Soome #define DXE_SERVICES_TABLE_GUID \
16*f334afcfSToomas Soome   { \
17*f334afcfSToomas Soome     0x5ad34ba, 0x6f02, 0x4214, {0x95, 0x2e, 0x4d, 0xa0, 0x39, 0x8e, 0x2b, 0xb9 } \
18*f334afcfSToomas Soome   }
19*f334afcfSToomas Soome 
20*f334afcfSToomas Soome extern EFI_GUID  gEfiDxeServicesTableGuid;
21*f334afcfSToomas Soome 
22*f334afcfSToomas Soome #endif
23