Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/edk2/Include/Guid/DxeServices.h
96339 views
1
/** @file
2
GUID used to identify the DXE Services Table
3
4
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
5
SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
@par Revision Reference:
8
GUID introduced in PI Version 1.0.
9
10
**/
11
12
#ifndef __DXE_SERVICES_GUID_H__
13
#define __DXE_SERVICES_GUID_H__
14
15
//
16
// The DXE Services Table shall be stored in memory of type
17
// EfiBootServicesData
18
//
19
#define DXE_SERVICES_TABLE_GUID \
20
{ \
21
0x5ad34ba, 0x6f02, 0x4214, {0x95, 0x2e, 0x4d, 0xa0, 0x39, 0x8e, 0x2b, 0xb9 } \
22
}
23
24
extern EFI_GUID gEfiDxeServicesTableGuid;
25
26
#endif
27
28