1 /*++
2 
3   Copyright (c) 2004  - 2015, Intel Corporation. All rights reserved.<BR>
4 
5   This program and the accompanying materials are licensed and made available under
6   the terms and conditions of the BSD License that accompanies this distribution.
7   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 _SEC_FTPM_POLICY_PPI_H_
16 #define _SEC_FTPM_POLICY_PPI_H_
17 
18 #define SEC_FTPM_POLICY_PPI_GUID \
19   { \
20     0x4fd1ba49, 0x8f90, 0x471a, 0xa2, 0xc9, 0x17, 0x3c, 0x7a, 0x73, 0x2f, 0xd0 \
21   }
22 
23 extern EFI_GUID  gSeCfTPMPolicyPpiGuid;
24 
25 //
26 // PPI definition
27 //
28 typedef struct SEC_FTPM_POLICY_PPI {
29   BOOLEAN                 fTPMEnable;
30 } SEC_FTPM_POLICY_PPI;
31 
32 #endif
33