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   This program and the accompanying materials
6   are licensed and made available under the terms and conditions of the BSD License
7   which accompanies this distribution.  The full text of the license may be found at
8   http://opensource.org/licenses/bsd-license.php
9 
10   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 
13 **/
14 
15 #ifndef __SMM_VAR_CHECK_H__
16 #define __SMM_VAR_CHECK_H__
17 
18 #include <Protocol/VarCheck.h>
19 
20 #define EDKII_SMM_VAR_CHECK_PROTOCOL_GUID \
21   { \
22     0xb0d8f3c1, 0xb7de, 0x4c11, { 0xbc, 0x89, 0x2f, 0xb5, 0x62, 0xc8, 0xc4, 0x11 } \
23   };
24 
25 typedef struct _EDKII_SMM_VAR_CHECK_PROTOCOL EDKII_SMM_VAR_CHECK_PROTOCOL;
26 
27 struct _EDKII_SMM_VAR_CHECK_PROTOCOL {
28   EDKII_VAR_CHECK_REGISTER_SET_VARIABLE_CHECK_HANDLER   SmmRegisterSetVariableCheckHandler;
29   EDKII_VAR_CHECK_VARIABLE_PROPERTY_SET                 SmmVariablePropertySet;
30   EDKII_VAR_CHECK_VARIABLE_PROPERTY_GET                 SmmVariablePropertyGet;
31 };
32 
33 extern EFI_GUID gEdkiiSmmVarCheckProtocolGuid;
34 
35 #endif
36 
37