]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Framework/Ppi/Security2/Security2.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Ppi / Security2 / Security2.h
1 /*++
2
3 Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 Security2.h
15
16 Abstract:
17
18 PI 1.0 spec definition.
19
20 --*/
21
22
23 #ifndef __SECURITY2_PPI_H__
24 #define __SECURITY2_PPI_H__
25
26 #define EFI_PEI_SECURITY2_PPI_GUID \
27 { 0xdcd0be23, 0x9586, 0x40f4, {0xb6, 0x43, 0x6, 0x52, 0x2c, 0xed, 0x4e, 0xde}}
28
29
30 EFI_FORWARD_DECLARATION (EFI_PEI_SECURITY2_PPI);
31
32 typedef
33 EFI_STATUS
34 (EFIAPI *EFI_PEI_SECURITY_AUTHENTICATION_STATE) (
35 IN CONST EFI_PEI_SERVICES **PeiServices,
36 IN CONST EFI_PEI_SECURITY2_PPI *This,
37 IN UINT32 AuthenticationStatus,
38 IN EFI_PEI_FV_HANDLE FvHandle,
39 IN EFI_PEI_FILE_HANDLE FileHandle,
40 IN OUT BOOLEAN *DeferExection
41 );
42
43 struct _EFI_PEI_SECURITY2_PPI {
44 EFI_PEI_SECURITY_AUTHENTICATION_STATE AuthenticationState;
45 };
46
47
48 extern EFI_GUID gEfiPeiSecurity2PpiGuid;
49
50 #endif