microsoft/mu_feature_ffa

Public

mirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2d8ac10050d373d1c4b45aea63f17d763a4fc3f0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
5Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
6SPDX-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
13typedef struct {
14 ///
15 /// The table header for the EFI Boot Services Table.
16 ///
17 VOID *FDTAddress;
18} SECURE_PARTITION_SERVICES_TABLE;
19
20extern SECURE_PARTITION_SERVICES_TABLE *gSpst;
21
22#endif
23