]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SecurityStubDxe/SecurityStub.h
Rename the SecurityStub.inf to SecurityStubDxe.inf.
[mirror_edk2.git] / MdeModulePkg / Universal / SecurityStubDxe / SecurityStub.h
1 /** @file
2 Some definitions for Security Architectural Protocol stub driver
3
4 Copyright (c) 2006 - 2007, Intel Corporation
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 _SECURITY_STUB_ARCH_PROTOCOL_H
16 #define _SECURITY_STUB_ARCH_PROTOCOL_H
17
18
19 //
20 // Common header files for this module.
21 //
22 #include <PiDxe.h>
23 #include <Protocol/Security.h>
24 #include <Library/DebugLib.h>
25 #include <Library/UefiBootServicesTableLib.h>
26 #include <Library/UefiDriverEntryPoint.h>
27
28 //
29 // Function prototypes
30 //
31 EFI_STATUS
32 EFIAPI
33 SecurityStubAuthenticateState (
34 IN EFI_SECURITY_ARCH_PROTOCOL *This,
35 IN UINT32 AuthenticationStatus,
36 IN EFI_DEVICE_PATH_PROTOCOL *File
37 );
38
39 EFI_STATUS
40 EFIAPI
41 SecurityStubInitialize (
42 IN EFI_HANDLE ImageHandle,
43 IN EFI_SYSTEM_TABLE *SystemTable
44 );
45
46 #endif