]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - IntelFrameworkModulePkg/Library/GenericBdsLib/String.c
Program SD Cards into 4-bit mode (support for this is required in the spec). This...
[mirror_edk2.git] / IntelFrameworkModulePkg / Library / GenericBdsLib / String.c
... / ...
CommitLineData
1/** @file\r
2 String support\r
3\r
4Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
5This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14#include "String.h"\r
15\r
16/**\r
17 Get string by string id from HII Interface\r
18\r
19\r
20 @param Id String ID.\r
21\r
22 @retval CHAR16 * String from ID.\r
23 @retval NULL If error occurs.\r
24\r
25**/\r
26CHAR16 *\r
27BdsLibGetStringById (\r
28 IN EFI_STRING_ID Id\r
29 )\r
30{\r
31 return HiiGetString (gBdsLibStringPackHandle, Id, NULL);\r
32}\r