]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Library/ExtendedIfrSupportLib.h
Fix function header
[mirror_edk2.git] / MdeModulePkg / Include / Library / ExtendedIfrSupportLib.h
CommitLineData
9226efe5 1/** @file\r
2 Library header file defines APIs that is related to IFR operations but \r
3 specific to EDK II implementation.\r
4\r
1e354c03 5Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
6All rights reserved. This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
9226efe5 13\r
14**/\r
15\r
16#ifndef __EXTENDED_IFR_SUPPORT_LIB_H__\r
17#define __EXTENDED_IFR_SUPPORT_LIB_H__\r
18\r
19/**\r
20 Create GUIDed opcode for banner. Banner opcode\r
21 EFI_IFR_EXTEND_OP_BANNER is extended opcode specific\r
22 to Intel's implementation.\r
23\r
24 @param Title String ID for title\r
25 @param LineNumber Line number for this banner\r
26 @param Alignment Alignment for this banner, left, center or right\r
27 @param Data Destination for the created opcode binary\r
28\r
29 @retval EFI_SUCCESS Opcode create success\r
30 @retval EFI_BUFFER_TOO_SMALL The space reserved in Data field is too small.\r
31\r
32**/\r
33EFI_STATUS\r
5f597758 34EFIAPI\r
9226efe5 35CreateBannerOpCode (\r
36 IN EFI_STRING_ID Title,\r
37 IN UINT16 LineNumber,\r
38 IN UINT8 Alignment,\r
39 IN OUT EFI_HII_UPDATE_DATA *Data\r
ed66e1bc 40 );\r
9226efe5 41\r
8d00a0f1 42/**\r
43 This function initialize the data structure for dynamic opcode.\r
44\r
45 @param UpdateData The adding data;\r
46 @param BufferSize Length of the buffer to fill dynamic opcodes.\r
47\r
48 @retval EFI_SUCCESS Update data is initialized.\r
49 @retval EFI_INVALID_PARAMETER UpdateData is NULL.\r
50 @retval EFI_OUT_OF_RESOURCES No enough memory to allocate.\r
51\r
52**/\r
53EFI_STATUS\r
54IfrLibInitUpdateData (\r
55 IN OUT EFI_HII_UPDATE_DATA *UpdateData,\r
56 IN UINT32 BufferSize\r
57 )\r
58;\r
59\r
60/**\r
61\r
62 This function free the resource of update data.\r
63\r
64 @param UpdateData The adding data;\r
65\r
8d00a0f1 66**/\r
f875a4f1 67VOID\r
8d00a0f1 68IfrLibFreeUpdateData (\r
69 IN EFI_HII_UPDATE_DATA *UpdateData\r
70 )\r
71;\r
72\r
9226efe5 73/**\r
74 This function allows the caller to update a form that has\r
75 previously been registered with the EFI HII database.\r
76 The update make use of a extended opcode EFI_IFR_EXTEND_OP_LABEL\r
77 specific to Intel's implementation to complete the operation.\r
78 \r
79\r
80 @param Handle Hii Handle\r
81 @param FormSetGuid The formset should be updated.\r
82 @param FormId The form should be updated.\r
83 @param Label Update information starting immediately after this\r
84 label in the IFR\r
85 @param Insert If TRUE and Data is not NULL, insert data after\r
86 Label. If FALSE, replace opcodes between two\r
87 labels with Data.\r
88 @param Data The adding data; If NULL, remove opcodes between\r
89 two Label.\r
90\r
91 @retval EFI_SUCCESS Update success.\r
92 @retval Other Update fail.\r
93\r
94**/\r
95EFI_STATUS\r
5f597758 96EFIAPI\r
9226efe5 97IfrLibUpdateForm (\r
98 IN EFI_HII_HANDLE Handle,\r
99 IN EFI_GUID *FormSetGuid, OPTIONAL\r
100 IN EFI_FORM_ID FormId,\r
101 IN UINT16 Label,\r
102 IN BOOLEAN Insert,\r
103 IN EFI_HII_UPDATE_DATA *Data\r
ed66e1bc 104 );\r
9226efe5 105\r
106/**\r
107 Extract formset class for given HII handle.\r
108\r
109 If Handle is not a valid EFI_HII_HANDLE in the default HII database, then\r
110 ASSERT.\r
111\r
112 If Class is NULL, then ASSERT.\r
113 IfFormSetTitle is NULL, then ASSERT.\r
114 If FormSetHelp is NULL, then ASSERT.\r
115\r
116 @param HiiHandle Hii handle\r
ebafc55b
LG
117 @param Class On output, Class of the formset\r
118 @param FormSetTitle On output, Formset title string\r
119 @param FormSetHelp On output, Formset help string\r
9226efe5 120\r
121 @retval EFI_SUCCESS Successfully extract Class for specified Hii\r
122 handle.\r
123\r
124**/\r
125EFI_STATUS\r
5f597758 126EFIAPI\r
9226efe5 127IfrLibExtractClassFromHiiHandle (\r
128 IN EFI_HII_HANDLE Handle,\r
129 OUT UINT16 *Class,\r
130 OUT EFI_STRING_ID *FormSetTitle,\r
131 OUT EFI_STRING_ID *FormSetHelp\r
ed66e1bc 132 );\r
9226efe5 133\r
134/**\r
135 Configure the buffer accrording to ConfigBody strings in the format of\r
136 <Length:4 bytes>, <Offset: 2 bytes>, <Width:2 bytes>, <Data:n bytes>.\r
53dff899 137 This ConfigBody strings is generated by UEFI VfrCompiler for the default\r
138 values in a Form Set. The name of the ConfigBody strings is VfrMyIfrNVDataDefault0000\r
139 constructed following this rule: \r
140 "Vfr" + varstore.name + "Default" + defaultstore.attributes.\r
141 Check the generated C file in Output for details.\r
9226efe5 142\r
143 @param Buffer the start address of buffer.\r
144 @param BufferSize the size of buffer.\r
5f597758
LG
145 @param Number the number of the ConfigBody strings.\r
146 @param ... the ConfigBody strings\r
9226efe5 147\r
148 @retval EFI_BUFFER_TOO_SMALL the BufferSize is too small to operate.\r
149 @retval EFI_INVALID_PARAMETER Buffer is NULL or BufferSize is 0.\r
150 @retval EFI_SUCCESS Operation successful.\r
151\r
152**/\r
153EFI_STATUS\r
154EFIAPI\r
155IfrLibExtractDefault(\r
156 IN VOID *Buffer,\r
157 IN UINTN *BufferSize,\r
158 UINTN Number,\r
159 ...\r
ed66e1bc 160 );\r
9226efe5 161\r
162#endif\r
163\r