microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
FfaFeaturePkg/Include/Library/SecurePartitionServicesTableLib.h
22lines · modecode
| 1 | /** @file |
| 2 | Provides a service to retrieve a pointer to the EFI Boot Services Table. |
| 3 | Only available to DXE and UEFI module types. |
| 4 | |
| 5 | Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR> |
| 6 | SPDX-License-Identifier: BSD-2-Clause-Patent |
| 7 | |
| 8 | **/ |
| 9 | |
| 10 | #ifndef SECURE_PARTITION_SERVICES_TABLE_LIB_H_ |
| 11 | #define SECURE_PARTITION_SERVICES_TABLE_LIB_H_ |
| 12 | |
| 13 | typedef struct { |
| 14 | /// |
| 15 | /// The table header for the EFI Boot Services Table. |
| 16 | /// |
| 17 | VOID *FDTAddress; |
| 18 | } SECURE_PARTITION_SERVICES_TABLE; |
| 19 | |
| 20 | extern SECURE_PARTITION_SERVICES_TABLE *gSpst; |
| 21 | |
| 22 | #endif |
| 23 | |