Last change
on this file since 108793 was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
879 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | SMM variable check definitions, it reuses the interface definitions of variable check.
|
---|
3 |
|
---|
4 | Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #ifndef __SMM_VAR_CHECK_H__
|
---|
10 | #define __SMM_VAR_CHECK_H__
|
---|
11 |
|
---|
12 | #include <Protocol/VarCheck.h>
|
---|
13 |
|
---|
14 | #define EDKII_SMM_VAR_CHECK_PROTOCOL_GUID \
|
---|
15 | { \
|
---|
16 | 0xb0d8f3c1, 0xb7de, 0x4c11, { 0xbc, 0x89, 0x2f, 0xb5, 0x62, 0xc8, 0xc4, 0x11 } \
|
---|
17 | };
|
---|
18 |
|
---|
19 | typedef struct _EDKII_SMM_VAR_CHECK_PROTOCOL EDKII_SMM_VAR_CHECK_PROTOCOL;
|
---|
20 |
|
---|
21 | struct _EDKII_SMM_VAR_CHECK_PROTOCOL {
|
---|
22 | EDKII_VAR_CHECK_REGISTER_SET_VARIABLE_CHECK_HANDLER SmmRegisterSetVariableCheckHandler;
|
---|
23 | EDKII_VAR_CHECK_VARIABLE_PROPERTY_SET SmmVariablePropertySet;
|
---|
24 | EDKII_VAR_CHECK_VARIABLE_PROPERTY_GET SmmVariablePropertyGet;
|
---|
25 | };
|
---|
26 |
|
---|
27 | extern EFI_GUID gEdkiiSmmVarCheckProtocolGuid;
|
---|
28 |
|
---|
29 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.