]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/PlatformBdsDxe/Generic/String.h
3e5a177782ce788c121e2eabeef4e865f5ec0c82
[mirror_edk2.git] / Nt32Pkg / PlatformBdsDxe / Generic / String.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 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 //
28 // Include common header file for this module.
29 //
30 #include "CommonHeader.h"
31
32 //
33 // This is the VFR compiler generated header file which defines the
34 // string identifiers.
35 //
36 #include "BdsStrDefs.h"
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 EFI_HII_HANDLE gStringPackHandle;
47 EFI_HII_PROTOCOL *Hii;
48
49 CHAR16 *
50 GetStringById (
51 IN STRING_REF Id
52 );
53
54 EFI_STATUS
55 InitializeStringSupport (
56 VOID
57 );
58
59 EFI_STATUS
60 CallFrontPage (
61 VOID
62 );
63
64 #endif // _STRING_H_