]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Library/ExtendedIfrSupportLib.h
Add function headers & file header for public header files
[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
34CreateBannerOpCode (\r
35 IN EFI_STRING_ID Title,\r
36 IN UINT16 LineNumber,\r
37 IN UINT8 Alignment,\r
38 IN OUT EFI_HII_UPDATE_DATA *Data\r
39 )\r
40;\r
41\r
42/**\r
43 This function allows the caller to update a form that has\r
44 previously been registered with the EFI HII database.\r
45 The update make use of a extended opcode EFI_IFR_EXTEND_OP_LABEL\r
46 specific to Intel's implementation to complete the operation.\r
47 \r
48\r
49 @param Handle Hii Handle\r
50 @param FormSetGuid The formset should be updated.\r
51 @param FormId The form should be updated.\r
52 @param Label Update information starting immediately after this\r
53 label in the IFR\r
54 @param Insert If TRUE and Data is not NULL, insert data after\r
55 Label. If FALSE, replace opcodes between two\r
56 labels with Data.\r
57 @param Data The adding data; If NULL, remove opcodes between\r
58 two Label.\r
59\r
60 @retval EFI_SUCCESS Update success.\r
61 @retval Other Update fail.\r
62\r
63**/\r
64EFI_STATUS\r
65IfrLibUpdateForm (\r
66 IN EFI_HII_HANDLE Handle,\r
67 IN EFI_GUID *FormSetGuid, OPTIONAL\r
68 IN EFI_FORM_ID FormId,\r
69 IN UINT16 Label,\r
70 IN BOOLEAN Insert,\r
71 IN EFI_HII_UPDATE_DATA *Data\r
72 )\r
73;\r
74\r
75/**\r
76 Extract formset class for given HII handle.\r
77\r
78 If Handle is not a valid EFI_HII_HANDLE in the default HII database, then\r
79 ASSERT.\r
80\r
81 If Class is NULL, then ASSERT.\r
82 IfFormSetTitle is NULL, then ASSERT.\r
83 If FormSetHelp is NULL, then ASSERT.\r
84\r
85 @param HiiHandle Hii handle\r
86 @param Class On output, Class of the formset\r
87 @param FormSetTitle On output, Formset title string\r
88 @param FormSetHelp On output, Formset help string\r
89\r
90 @retval EFI_SUCCESS Successfully extract Class for specified Hii\r
91 handle.\r
92\r
93**/\r
94EFI_STATUS\r
95IfrLibExtractClassFromHiiHandle (\r
96 IN EFI_HII_HANDLE Handle,\r
97 OUT UINT16 *Class,\r
98 OUT EFI_STRING_ID *FormSetTitle,\r
99 OUT EFI_STRING_ID *FormSetHelp\r
100 )\r
101;\r
102\r
103/**\r
104 Configure the buffer accrording to ConfigBody strings in the format of\r
105 <Length:4 bytes>, <Offset: 2 bytes>, <Width:2 bytes>, <Data:n bytes>.\r
106\r
107 @param Buffer the start address of buffer.\r
108 @param BufferSize the size of buffer.\r
109 @param Number the number of the strings.\r
110\r
111 @retval EFI_BUFFER_TOO_SMALL the BufferSize is too small to operate.\r
112 @retval EFI_INVALID_PARAMETER Buffer is NULL or BufferSize is 0.\r
113 @retval EFI_SUCCESS Operation successful.\r
114\r
115**/\r
116EFI_STATUS\r
117EFIAPI\r
118IfrLibExtractDefault(\r
119 IN VOID *Buffer,\r
120 IN UINTN *BufferSize,\r
121 UINTN Number,\r
122 ...\r
123 )\r
124;\r
125\r
126#endif\r
127\r