]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/DriverSampleDxe/DriverSample.h
Port DriverSample.inf, HiiDatabase.inf and SetupBrowser.inf
[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 common header file for this module.
29 //
30 #include "CommonHeader.h"
31
32 #include "NVDataStruc.h"
33
34 //
35 // This is the generated header file which includes whatever needs to be exported (strings + IFR)
36 //
37
38 extern UINT8 VfrBin[];
39 //
40 // extern UINT8 VfrStringsStr[];
41 //
42 extern UINT8 InventoryBin[];
43 //
44 // extern UINT8 InventoryStringsStr[];
45 //
46 extern UINT8 DriverSampleStrings[];
47
48 #define SAMPLE_STRING L"This is an error!"
49
50 #define EFI_CALLBACK_INFO_SIGNATURE EFI_SIGNATURE_32 ('C', 'l', 'b', 'k')
51
52 typedef struct {
53 UINTN Signature;
54 EFI_HANDLE CallbackHandle;
55 EFI_FORM_CALLBACK_PROTOCOL DriverCallback;
56 UINT16 *KeyList;
57 VOID *FormBuffer;
58 EFI_HII_HANDLE RegisteredHandle;
59 EFI_HII_PROTOCOL *Hii;
60 } EFI_CALLBACK_INFO;
61
62 #define EFI_CALLBACK_INFO_FROM_THIS(a) CR (a, EFI_CALLBACK_INFO, DriverCallback, EFI_CALLBACK_INFO_SIGNATURE)
63
64 #endif