]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/DriverSampleDxe/DriverSample.h
8c19d1cf8197cf3a6d236e37467f1d8dacde34ad
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / DriverSampleDxe / DriverSample.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 DriverSample.h
15
16 Abstract:
17
18
19 Revision History
20
21 --*/
22
23 #ifndef _DRIVER_SAMPLE_H
24 #define _DRIVER_SAMPLE_H
25
26
27
28 #include <PiDxe.h>
29
30 #include <Protocol/FormCallbackFramework.h>
31 #include <Protocol/HiiFramework.h>
32
33 #include <Library/UefiBootServicesTableLib.h>
34 #include <Library/UefiRuntimeServicesTableLib.h>
35 #include <Library/DebugLib.h>
36 #include <Library/UefiDriverEntryPoint.h>
37 #include <Library/BaseLib.h>
38 #include <Library/PrintLib.h>
39 #include <Library/IfrSupportLibFramework.h>
40 #include <Library/BaseMemoryLib.h>
41 #include <Library/MemoryAllocationLib.h>
42 #include <Library/HiiLibFramework.h>
43
44 #include "NVDataStruc.h"
45
46 //
47 // This is the generated header file which includes whatever needs to be exported (strings + IFR)
48 //
49
50 extern UINT8 VfrBin[];
51 //
52 // extern UINT8 VfrStringsStr[];
53 //
54 extern UINT8 InventoryBin[];
55 //
56 // extern UINT8 InventoryStringsStr[];
57 //
58 extern UINT8 DriverSampleDxeStrings[];
59
60 #define SAMPLE_STRING L"This is an error!"
61
62 #define EFI_CALLBACK_INFO_SIGNATURE EFI_SIGNATURE_32 ('C', 'l', 'b', 'k')
63
64 typedef struct {
65 UINTN Signature;
66 EFI_HANDLE CallbackHandle;
67 EFI_FORM_CALLBACK_PROTOCOL DriverCallback;
68 UINT16 *KeyList;
69 VOID *FormBuffer;
70 EFI_HII_HANDLE RegisteredHandle;
71 EFI_HII_PROTOCOL *Hii;
72 } EFI_CALLBACK_INFO;
73
74 #define EFI_CALLBACK_INFO_FROM_THIS(a) CR (a, EFI_CALLBACK_INFO, DriverCallback, EFI_CALLBACK_INFO_SIGNATURE)
75
76 #endif