]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Security/SecurityStub/Dxe/SecurityStub.h
pdated code per coding standard. Changed comments, converted all \ to / and removed...
[mirror_edk2.git] / MdeModulePkg / Universal / Security / SecurityStub / Dxe / SecurityStub.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. 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 SecurityStub.h
15
16 Abstract:
17
18 Some definitions for Security Architectural Protocol stub driver
19
20 --*/
21
22 #ifndef _SECURITY_STUB_ARCH_PROTOCOL_H
23 #define _SECURITY_STUB_ARCH_PROTOCOL_H
24
25
26 //
27 // Common header files for this module.
28 //
29 #include <PiDxe.h>
30 #include <Protocol/Security.h>
31 #include <Library/DebugLib.h>
32 #include <Library/UefiBootServicesTableLib.h>
33 #include <Library/UefiDriverEntryPoint.h>
34
35 //
36 // Function prototypes
37 //
38 EFI_STATUS
39 EFIAPI
40 SecurityStubAuthenticateState (
41 IN EFI_SECURITY_ARCH_PROTOCOL *This,
42 IN UINT32 AuthenticationStatus,
43 IN EFI_DEVICE_PATH_PROTOCOL *File
44 )
45 ;
46
47 EFI_STATUS
48 EFIAPI
49 SecurityStubInitialize (
50 IN EFI_HANDLE ImageHandle,
51 IN EFI_SYSTEM_TABLE *SystemTable
52 )
53 ;
54
55 #endif