]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Ppi/OperatorPresence.h
sync comments, fix function header, rename variable name to follow coding style.
[mirror_edk2.git] / MdeModulePkg / Include / Ppi / OperatorPresence.h
1 /** @file
2 This file defines OperatorPresent PPI responsible for detecting TPM operator presence.
3
4 Copyright (c) 2006 - 2008, Intel Corporation. <BR>
5 All rights reserved. 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 _PEI_OPERATOR_PRESENCE_H_
16 #define _PEI_OPERATOR_PRESENCE_H_
17
18 #define PEI_OPERATOR_PRESENCE_PPI_GUID \
19 { 0x20a7378c, 0xaa83, 0x4ce1, {0x82, 0x1f, 0x47, 0x40, 0xee, 0x1b, 0x3f, 0x9f } }
20
21 typedef struct _PEI_OPERATOR_PRESENCE_PPI PEI_OPERATOR_PRESENCE_PPI;
22
23 struct _PEI_OPERATOR_PRESENCE_PPI {
24 BOOLEAN OperatorPresent;
25 };
26
27 extern EFI_GUID gPeiOperatorPresencePpiGuid;
28
29 #endif // _PEI_OPERATOR_PRESENCE_H_