]> git.proxmox.com Git - mirror_edk2.git/blame - DuetPkg/DataHubGenDxe/DataHubGen.h
Modify all file header to follow doxygen format
[mirror_edk2.git] / DuetPkg / DataHubGenDxe / DataHubGen.h
CommitLineData
ca162103 1/*++\r
2\r
3Copyright (c) 2006 - 2007, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name: \r
13\r
14 DataHubGen.h\r
15\r
16Abstract:\r
17\r
18--*/\r
19\r
20#ifndef _DATA_HUB_GEN_H_\r
21#define _DATA_HUB_GEN_H_\r
22\r
23#include <FrameworkDxe.h>\r
24#include <IndustryStandard/Smbios.h>\r
25\r
26#include <Guid/HobList.h>\r
27#include <Guid/Smbios.h>\r
28#include <Guid/DataHubProducer.h>\r
29#include <Guid/DataHubRecords.h>\r
30\r
31#include <Protocol/Datahub.h>\r
32#include <Protocol/FrameworkHii.h>\r
33\r
34#include <Library/BaseLib.h>\r
35#include <Library/UefiLib.h>\r
36#include <Library/HobLib.h>\r
37#include <Library/UefiBootServicesTableLib.h>\r
38#include <Library/FrameworkHiiLib.h>\r
39#include <Library/DebugLib.h>\r
40#include <Library/BaseMemoryLib.h>\r
41#include <Library/MemoryAllocationLib.h>\r
42\r
43#define PRODUCT_NAME L"DUET"\r
44#define PRODUCT_VERSION L"Beta"\r
45\r
46#define FIRMWARE_PRODUCT_NAME (PRODUCT_NAME L": ")\r
47#ifdef EFI32\r
48#if (EFI_SPECIFICATION_VERSION >= 0x00020000)\r
49#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(IA32.UEFI)" PRODUCT_VERSION L": ")\r
50#else\r
51#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(IA32.EFI)" PRODUCT_VERSION L": ")\r
52#endif\r
53#else // EFIX64\r
54#if (EFI_SPECIFICATION_VERSION >= 0x00020000)\r
55#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(X64.UEFI)" PRODUCT_VERSION L": ")\r
56#else\r
57#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(X64.EFI)" PRODUCT_VERSION L": ")\r
58#endif\r
59#endif\r
60\r
61SMBIOS_STRUCTURE_POINTER\r
62GetSmbiosTableFromType (\r
63 IN VOID *Smbios,\r
64 IN UINT8 Type,\r
65 IN UINTN Index\r
66 );\r
67\r
68CHAR8 *\r
69GetSmbiosString (\r
70 IN SMBIOS_STRUCTURE_POINTER SmbiosTable,\r
71 IN SMBIOS_TABLE_STRING String\r
72 );\r
73\r
74#endif\r