]> git.proxmox.com Git - mirror_edk2.git/blame - DuetPkg/SmbiosGenDxe/SmbiosGen.h
DuetPkg: Fix GCC error to avoid the duplicated global variable in SmbiosGenDxe
[mirror_edk2.git] / DuetPkg / SmbiosGenDxe / SmbiosGen.h
CommitLineData
21020c7c 1/** @file\r
2\r
b1f700a8
HT
3Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
21020c7c 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 _SMBIOS_GEN_H_\r
21#define _SMBIOS_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/DataHubRecords.h>\r
29\r
30#include <Protocol/Smbios.h>\r
31#include <Protocol/FrameworkHii.h>\r
32#include <Protocol/HiiDatabase.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/HiiLib.h>\r
39#include <Library/DebugLib.h>\r
40#include <Library/BaseMemoryLib.h>\r
41#include <Library/MemoryAllocationLib.h>\r
bd6bb560 42#include <Library/UefiHiiServicesLib.h>\r
21020c7c 43\r
44#define PRODUCT_NAME L"DUET"\r
45#define PRODUCT_VERSION L"Beta"\r
46\r
47#define FIRMWARE_PRODUCT_NAME (PRODUCT_NAME L": ")\r
48#ifdef EFI32\r
21020c7c 49#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(IA32.UEFI)" PRODUCT_VERSION L": ")\r
21020c7c 50#else // EFIX64\r
21020c7c 51#define FIRMWARE_BIOS_VERSIONE (PRODUCT_NAME L"(X64.UEFI)" PRODUCT_VERSION L": ")\r
21020c7c 52#endif\r
53\r
54SMBIOS_STRUCTURE_POINTER\r
55GetSmbiosTableFromType (\r
56 IN SMBIOS_TABLE_ENTRY_POINT *Smbios,\r
57 IN UINT8 Type,\r
58 IN UINTN Index\r
59 );\r
60\r
61CHAR8 *\r
62GetSmbiosString (\r
63 IN SMBIOS_STRUCTURE_POINTER SmbiosTable,\r
64 IN SMBIOS_TABLE_STRING String\r
65 );\r
66\r
67/**\r
68 Logs SMBIOS record.\r
69\r
70 @param Smbios Pointer to SMBIOS protocol instance.\r
71 @param Buffer Pointer to the data buffer.\r
72\r
73**/\r
74VOID\r
75LogSmbiosData (\r
76 IN EFI_SMBIOS_PROTOCOL *Smbios,\r
77 IN UINT8 *Buffer\r
78 );\r
79\r
80#endif\r