]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/BdsDxe/String.h
UEFI HII: Merge UEFI HII support changes from branch.
[mirror_edk2.git] / MdeModulePkg / Universal / BdsDxe / String.h
1 /*++
2
3 Copyright (c) 2004 - 2008, 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 String.h
15
16 Abstract:
17
18 String support
19
20 Revision History
21
22 --*/
23
24 #ifndef _STRING_H_
25 #define _STRING_H_
26
27 #include "Bds.h"
28
29 extern EFI_HII_HANDLE gStringPackHandle;
30
31 //
32 // This is the VFR compiler generated header file which defines the
33 // string identifiers.
34 //
35
36 extern UINT8 BdsStrings[];
37
38 //
39 // String Definition Guid for BDS Platform
40 //
41 #define EFI_BDS_PLATFORM_GUID \
42 { \
43 0x7777E939, 0xD57E, 0x4DCB, 0xA0, 0x8E, 0x64, 0xD7, 0x98, 0x57, 0x1E, 0x0F \
44 }
45
46 CHAR16 *
47 GetStringById (
48 IN EFI_STRING_ID Id
49 );
50
51 EFI_STATUS
52 InitializeStringSupport (
53 VOID
54 );
55
56 EFI_STATUS
57 CallFrontPage (
58 VOID
59 );
60
61 #endif // _STRING_H_