]>
Commit | Line | Data |
---|---|---|
f4e7aa05 TH |
1 | /*++\r |
2 | \r | |
3 | Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>\r | |
4 | \r | |
5 | This program and the accompanying materials are licensed and made available under\r | |
6 | the terms and conditions of the BSD License that accompanies this distribution. \r | |
7 | The full text of the license may be found at \r | |
8 | http://opensource.org/licenses/bsd-license.php. \r | |
9 | \r | |
10 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r | |
11 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r | |
12 | \r | |
13 | --*/\r | |
14 | \r | |
15 | #ifndef _SEC_FTPM_POLICY_PPI_H_\r | |
16 | #define _SEC_FTPM_POLICY_PPI_H_\r | |
17 | \r | |
18 | #define SEC_FTPM_POLICY_PPI_GUID \\r | |
19 | { \\r | |
20 | 0x4fd1ba49, 0x8f90, 0x471a, 0xa2, 0xc9, 0x17, 0x3c, 0x7a, 0x73, 0x2f, 0xd0 \\r | |
21 | }\r | |
22 | \r | |
23 | extern EFI_GUID gSeCfTPMPolicyPpiGuid;\r | |
24 | \r | |
25 | //\r | |
26 | // PPI definition\r | |
27 | //\r | |
28 | typedef struct SEC_FTPM_POLICY_PPI {\r | |
29 | BOOLEAN fTPMEnable;\r | |
30 | } SEC_FTPM_POLICY_PPI;\r | |
31 | \r | |
32 | #endif\r |