Sync all bug fixes between EDK1.04 and EDK1.06 into EdkCompatibilityPkg.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11094 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -185,9 +185,16 @@ typedef struct {
|
||||
UINT32 IoAlign;
|
||||
|
||||
EFI_LBA LastBlock;
|
||||
|
||||
EFI_LBA LowestAlignedLba;
|
||||
UINT32 LogicalBlocksPerPhysicalBlock;
|
||||
} EFI_BLOCK_IO_MEDIA;
|
||||
|
||||
#define EFI_BLOCK_IO_PROTOCOL_REVISION 0x00010000
|
||||
#define EFI_BLOCK_IO_PROTOCOL_REVISION 0x00010000
|
||||
#define EFI_BLOCK_IO_PROTOCOL_REVISION2 0x00020001
|
||||
|
||||
#define SIZE_OF_EFI_BLOCK_IO_MEDIA_REV1 ((UINTN)&((EFI_BLOCK_IO_MEDIA *)0)->LastBlock + sizeof(EFI_LBA))
|
||||
#define SIZE_OF_EFI_BLOCK_IO_MEDIA_REV2 sizeof(EFI_BLOCK_IO_MEDIA)
|
||||
|
||||
struct _EFI_BLOCK_IO_PROTOCOL {
|
||||
UINT64 Revision;
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -50,12 +50,13 @@ EFI_STATUS
|
||||
Retrieves a Unicode string that is the user readable name of the EFI Driver.
|
||||
|
||||
Arguments:
|
||||
This - A pointer to the EFI_COMPONENT_NAME_PROTOCOL instance.
|
||||
Language - A pointer to a three character ISO 639-2 language identifier.
|
||||
This is the language of the driver name that that the caller
|
||||
is requesting, and it must match one of the languages specified
|
||||
in SupportedLanguages. The number of languages supported by a
|
||||
driver is up to the driver writer.
|
||||
This - A pointer to the EFI_COMPONENT_NAME2_PROTOCOL instance.
|
||||
Language - A pointer to a Null-terminated ASCII string array indicating the
|
||||
language. This is the language of the driver name that the caller
|
||||
is requesting, and it must match one of the languages specified in
|
||||
SupportedLanguages. The number of languages supported by a
|
||||
driver is up to the driver writer. Language is specified in RFC
|
||||
4646 language code format.
|
||||
DriverName - A pointer to the Unicode string to return. This Unicode string
|
||||
is the name of the driver specified by This in the language
|
||||
specified by Language.
|
||||
@@ -86,7 +87,7 @@ EFI_STATUS
|
||||
that is being managed by an EFI Driver.
|
||||
|
||||
Arguments:
|
||||
This - A pointer to the EFI_COMPONENT_NAME_PROTOCOL instance.
|
||||
This - A pointer to the EFI_COMPONENT_NAME2_PROTOCOL instance.
|
||||
ControllerHandle - The handle of a controller that the driver specified by
|
||||
This is managing. This handle specifies the controller
|
||||
whose name is to be returned.
|
||||
@@ -96,12 +97,12 @@ EFI_STATUS
|
||||
for a bus drivers that wish to retrieve the name of the
|
||||
bus controller. It will not be NULL for a bus driver
|
||||
that wishes to retrieve the name of a child controller.
|
||||
Language - A pointer to a three character ISO 639-2 language
|
||||
identifier. This is the language of the controller name
|
||||
that that the caller is requesting, and it must match one
|
||||
of the languages specified in SupportedLanguages. The
|
||||
number of languages supported by a driver is up to the
|
||||
driver writer.
|
||||
Language - A pointer to a Null-terminated ASCII string array indicating the
|
||||
language. This is the language of the driver name that the caller
|
||||
is requesting, and it must match one of the languages specified in
|
||||
SupportedLanguages. The number of languages supported by a
|
||||
driver is up to the driver writer. Language is specified in RFC
|
||||
4646 language code format.
|
||||
ControllerName - A pointer to the Unicode string to return. This Unicode
|
||||
string is the name of the controller specified by
|
||||
ControllerHandle and ChildHandle in the language specified
|
||||
|
@@ -1,6 +1,6 @@
|
||||
#/*++
|
||||
#
|
||||
# Copyright (c) 2004 - 2007, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -117,6 +117,8 @@ COMPONENT_TYPE= LIBRARY
|
||||
HiiFont/HiiFont.c
|
||||
HiiImage/HiiImage.h
|
||||
HiiImage/HiiImage.c
|
||||
HiiPackageList/HiiPackageList.h
|
||||
HiiPackageList/HiiPackageList.c
|
||||
HiiString/HiiString.h
|
||||
HiiString/HiiString.c
|
||||
Ip4/Ip4.h
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -138,8 +138,7 @@ EFI_STATUS
|
||||
Returns:
|
||||
EFI_SUCCESS - The data associated with the Handle was removed from
|
||||
the HII database.
|
||||
EFI_NOT_FOUND - The specified PackageList could not be found in database.
|
||||
EFI_INVALID_PARAMETER - The Handle was not valid.
|
||||
EFI_NOT_FOUND - The specified Handle is not in database.
|
||||
|
||||
--*/
|
||||
;
|
||||
@@ -166,8 +165,8 @@ EFI_STATUS
|
||||
Returns:
|
||||
EFI_SUCCESS - The HII database was successfully updated.
|
||||
EFI_OUT_OF_RESOURCES - Unable to allocate enough memory for the updated database.
|
||||
EFI_INVALID_PARAMETER - Handle or PackageList was NULL.
|
||||
EFI_NOT_FOUND - The Handle was not valid or could not be found in database.
|
||||
EFI_INVALID_PARAMETER - PackageList was NULL.
|
||||
EFI_NOT_FOUND - The specified Handle is not in database.
|
||||
|
||||
--*/
|
||||
;
|
||||
@@ -203,12 +202,16 @@ EFI_STATUS
|
||||
|
||||
Returns:
|
||||
EFI_SUCCESS - The matching handles are outputed successfully.
|
||||
HandleBufferLength is updated with the actual length.
|
||||
EFI_BUFFER_TO_SMALL - The HandleBufferLength parameter indicates that
|
||||
Handle is too small to support the number of handles.
|
||||
HandleBufferLength is updated with a value that will
|
||||
enable the data to fit.
|
||||
EFI_NOT_FOUND - No matching handle could not be found in database.
|
||||
EFI_INVALID_PARAMETER - Handle or HandleBufferLength was NULL.
|
||||
EFI_INVALID_PARAMETER - PackageType is not a EFI_HII_PACKAGE_TYPE_GUID but
|
||||
PackageGuid is not NULL, PackageType is a EFI_HII_
|
||||
PACKAGE_TYPE_GUID but PackageGuid is NULL.
|
||||
|
||||
--*/
|
||||
;
|
||||
@@ -312,7 +315,8 @@ EFI_STATUS
|
||||
|
||||
Returns:
|
||||
EFI_SUCCESS - Notification is unregistered successfully.
|
||||
EFI_INVALID_PARAMETER - The Handle is invalid.
|
||||
EFI_NOT_FOUND - The incoming notification handle does not exist
|
||||
in current hii database.
|
||||
|
||||
--*/
|
||||
;
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -53,9 +53,9 @@ typedef struct _EFI_HII_ROW_INFO {
|
||||
} EFI_HII_ROW_INFO;
|
||||
|
||||
typedef struct {
|
||||
UINT32 FontStyle;
|
||||
UINT16 FontSize; // character cell size in pixels
|
||||
CHAR16 FontName[1];
|
||||
EFI_HII_FONT_STYLE FontStyle;
|
||||
UINT16 FontSize; // character cell height in pixels
|
||||
CHAR16 FontName[1];
|
||||
} EFI_FONT_INFO;
|
||||
|
||||
typedef struct _EFI_FONT_DISPLAY_INFO {
|
||||
@@ -65,25 +65,25 @@ typedef struct _EFI_FONT_DISPLAY_INFO {
|
||||
EFI_FONT_INFO FontInfo;
|
||||
} EFI_FONT_DISPLAY_INFO;
|
||||
|
||||
#define EFI_HII_OUT_FLAG_CLIP 0x00000001
|
||||
#define EFI_HII_OUT_FLAG_WRAP 0x00000002
|
||||
#define EFI_HII_OUT_FLAG_CLEAN_Y 0x00000004
|
||||
#define EFI_HII_OUT_FLAG_CLEAN_X 0x00000008
|
||||
#define EFI_HII_OUT_FLAG_TRANSPARENT 0x00000010
|
||||
#define EFI_HII_IGNORE_IF_NO_GLYPH 0x00000020
|
||||
#define EFI_HII_IGNORE_LINE_BREAK 0x00000040
|
||||
#define EFI_HII_DIRECT_TO_SCREEN 0x00000080
|
||||
#define EFI_HII_OUT_FLAG_CLIP 0x00000001
|
||||
#define EFI_HII_OUT_FLAG_WRAP 0x00000002
|
||||
#define EFI_HII_OUT_FLAG_CLIP_CLEAN_Y 0x00000004
|
||||
#define EFI_HII_OUT_FLAG_CLIP_CLEAN_X 0x00000008
|
||||
#define EFI_HII_OUT_FLAG_TRANSPARENT 0x00000010
|
||||
#define EFI_HII_IGNORE_IF_NO_GLYPH 0x00000020
|
||||
#define EFI_HII_IGNORE_LINE_BREAK 0x00000040
|
||||
#define EFI_HII_DIRECT_TO_SCREEN 0x00000080
|
||||
|
||||
#define EFI_FONT_INFO_SYS_FONT 0x00000001
|
||||
#define EFI_FONT_INFO_SYS_SIZE 0x00000002
|
||||
#define EFI_FONT_INFO_SYS_STYLE 0x00000004
|
||||
#define EFI_FONT_INFO_SYS_FORE_COLOR 0x00000010
|
||||
#define EFI_FONT_INFO_SYS_BACK_COLOR 0x00000020
|
||||
#define EFI_FONT_INFO_RESIZE 0x00001000
|
||||
#define EFI_FONT_INFO_RESTYLE 0x00002000
|
||||
#define EFI_FONT_INFO_ANY_FONT 0x00010000
|
||||
#define EFI_FONT_INFO_ANY_SIZE 0x00020000
|
||||
#define EFI_FONT_INFO_ANY_STYLE 0x00040000
|
||||
#define EFI_FONT_INFO_SYS_FONT 0x00000001
|
||||
#define EFI_FONT_INFO_SYS_SIZE 0x00000002
|
||||
#define EFI_FONT_INFO_SYS_STYLE 0x00000004
|
||||
#define EFI_FONT_INFO_SYS_FORE_COLOR 0x00000010
|
||||
#define EFI_FONT_INFO_SYS_BACK_COLOR 0x00000020
|
||||
#define EFI_FONT_INFO_RESIZE 0x00001000
|
||||
#define EFI_FONT_INFO_RESTYLE 0x00002000
|
||||
#define EFI_FONT_INFO_ANY_FONT 0x00010000
|
||||
#define EFI_FONT_INFO_ANY_SIZE 0x00020000
|
||||
#define EFI_FONT_INFO_ANY_STYLE 0x00040000
|
||||
|
||||
typedef
|
||||
EFI_STATUS
|
||||
@@ -109,7 +109,7 @@ EFI_STATUS
|
||||
Flags - Describes how the string is to be drawn.
|
||||
String - Points to the null-terminated string to be displayed.
|
||||
StringInfo - Points to the string output information, including the color and font.
|
||||
If NULL, then the string will be output in the default system font and color.
|
||||
If NULL, then the string will be output in the default system font and color.
|
||||
Blt - If this points to a non-NULL on entry, this points to the image, which is Width pixels
|
||||
wide and Height pixels high. The string will be drawn onto this image and
|
||||
EFI_HII_OUT_FLAG_CLIP is implied. If this points to a NULL on entry, then a
|
||||
@@ -132,7 +132,8 @@ EFI_STATUS
|
||||
Returns:
|
||||
EFI_SUCCESS - The string was successfully rendered.
|
||||
EFI_OUT_OF_RESOURCES - Unable to allocate an output buffer for RowInfoArray or Blt.
|
||||
EFI_INVALID_PARAMETER - The String was NULL.
|
||||
EFI_INVALID_PARAMETER - The String or Blt was NULL.
|
||||
EFI_INVALID_PARAMETER - Flags were invalid combination.
|
||||
|
||||
--*/
|
||||
;
|
||||
@@ -166,7 +167,7 @@ EFI_STATUS
|
||||
Language - Points to the language for the retrieved string. If NULL, then the current system
|
||||
language is used.
|
||||
StringInfo - Points to the string output information, including the color and font.
|
||||
If NULL, then the string will be output in the default system font and color.
|
||||
If NULL, then the string will be output in the default system font and color.
|
||||
Blt - If this points to a non-NULL on entry, this points to the image, which is Width pixels
|
||||
wide and Height pixels high. The string will be drawn onto this image and
|
||||
EFI_HII_OUT_FLAG_CLIP is implied. If this points to a NULL on entry, then a
|
||||
@@ -187,9 +188,12 @@ EFI_STATUS
|
||||
is possible when character display is normalized that some character cells overlap.
|
||||
|
||||
Returns:
|
||||
EFI_SUCCESS - The string was successfully rendered.
|
||||
EFI_SUCCESS - The string was successfully rendered.
|
||||
EFI_OUT_OF_RESOURCES - Unable to allocate an output buffer for RowInfoArray or Blt.
|
||||
EFI_INVALID_PARAMETER - The String was NULL.
|
||||
EFI_INVALID_PARAMETER - The Blt or PackageList was NULL.
|
||||
EFI_INVALID_PARAMETER - Flags were invalid combination.
|
||||
EFI_NOT_FOUND - The specified PackageList is not in the Database or the stringid is not
|
||||
in the specified PackageList.
|
||||
|
||||
--*/
|
||||
;
|
||||
@@ -233,7 +237,7 @@ EFI_STATUS
|
||||
(EFIAPI *EFI_HII_GET_FONT_INFO) (
|
||||
IN CONST EFI_HII_FONT_PROTOCOL *This,
|
||||
IN OUT EFI_FONT_HANDLE *FontHandle,
|
||||
IN CONST EFI_FONT_DISPLAY_INFO *StringInfoIn,
|
||||
IN CONST EFI_FONT_DISPLAY_INFO *StringInfoIn, OPTIONAL
|
||||
OUT EFI_FONT_DISPLAY_INFO **StringInfoOut,
|
||||
IN CONST EFI_STRING String OPTIONAL
|
||||
)
|
||||
@@ -246,11 +250,13 @@ EFI_STATUS
|
||||
|
||||
Arguments:
|
||||
This - A pointer to the EFI_HII_FONT_PROTOCOL instance.
|
||||
FontHandle - On entry, points to the font handle returned by a
|
||||
previous call to GetFontInfo() or NULL to start with the
|
||||
FontHandle - On entry, points to the font handle returned by a previous
|
||||
call to GetFontInfo() or points to NULL to start with the
|
||||
first font. On return, points to the returned font handle or
|
||||
points to NULL if there are no more matching fonts.
|
||||
StringInfoIn - Upon entry, points to the font to return information about.
|
||||
points to NULL if there are no more matching fonts.
|
||||
StringInfoIn - Upon entry, points to the font to return information about.
|
||||
If NULL, then the information about the system default
|
||||
font will be returned.
|
||||
StringInfoOut - Upon return, contains the matching font's information.
|
||||
If NULL, then no information is returned.
|
||||
It's caller's responsibility to free this buffer.
|
||||
@@ -261,10 +267,10 @@ EFI_STATUS
|
||||
Returns:
|
||||
EFI_SUCCESS - Matching font returned successfully.
|
||||
EFI_NOT_FOUND - No matching font was found.
|
||||
EFI_INVALID_PARAMETER - StringInfoIn is NULL.
|
||||
EFI_INVALID_PARAMETER - StringInfoIn->FontInfoMask is an invalid combination.
|
||||
EFI_OUT_OF_RESOURCES - There were insufficient resources to complete the request.
|
||||
|
||||
--*/
|
||||
--*/
|
||||
;
|
||||
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -45,7 +45,7 @@ typedef struct _EFI_IMAGE_INPUT {
|
||||
UINT32 Flags;
|
||||
UINT16 Width;
|
||||
UINT16 Height;
|
||||
EFI_GRAPHICS_OUTPUT_BLT_PIXEL Bitmap[1];
|
||||
EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Bitmap;
|
||||
} EFI_IMAGE_INPUT;
|
||||
|
||||
#define EFI_IMAGE_TRANSPARENT 0x00000001
|
||||
@@ -101,8 +101,7 @@ EFI_STATUS
|
||||
IN CONST EFI_HII_IMAGE_PROTOCOL *This,
|
||||
IN EFI_HII_HANDLE PackageList,
|
||||
IN EFI_IMAGE_ID ImageId,
|
||||
OUT EFI_IMAGE_INPUT *Image,
|
||||
OUT UINTN *ImageSize
|
||||
OUT EFI_IMAGE_INPUT *Image
|
||||
)
|
||||
/*++
|
||||
|
||||
@@ -115,14 +114,14 @@ EFI_STATUS
|
||||
PackageList - Handle of the package list where this image will be searched.
|
||||
ImageId - The image's id,, which is unique within PackageList.
|
||||
Image - Points to the image.
|
||||
ImageSize - On entry, points to the size of the buffer pointed to by Image, in bytes. On return,
|
||||
points to the length of the image, in bytes.
|
||||
|
||||
Returns:
|
||||
EFI_SUCCESS - The new image was returned successfully.
|
||||
EFI_NOT_FOUND - The image specified by ImageId is not available.
|
||||
EFI_BUFFER_TOO_SMALL - The buffer specified by ImageSize is too small to hold the image.
|
||||
The specified PackageList is not in the database.
|
||||
EFI_INVALID_PARAMETER - The Image or ImageSize was NULL.
|
||||
EFI_OUT_OF_RESOURCES - The bitmap could not be retrieved because there was not
|
||||
enough memory.
|
||||
|
||||
--*/
|
||||
;
|
||||
@@ -149,7 +148,8 @@ EFI_STATUS
|
||||
|
||||
Returns:
|
||||
EFI_SUCCESS - The new image was updated successfully.
|
||||
EFI_NOT_FOUND - The image specified by ImageId is not in the database.
|
||||
EFI_NOT_FOUND - The image specified by ImageId is not in the database.
|
||||
The specified PackageList is not in the database.
|
||||
EFI_INVALID_PARAMETER - The Image was NULL.
|
||||
|
||||
--*/
|
||||
@@ -233,7 +233,9 @@ EFI_STATUS
|
||||
Returns:
|
||||
EFI_SUCCESS - The image was successfully drawn.
|
||||
EFI_OUT_OF_RESOURCES - Unable to allocate an output buffer for Blt.
|
||||
EFI_INVALID_PARAMETER - The Image was NULL.
|
||||
EFI_NOT_FOUND - The image specified by ImageId is not in the database.
|
||||
The specified PackageList is not in the database.
|
||||
EFI_INVALID_PARAMETER - The Blt was NULL.
|
||||
|
||||
--*/
|
||||
;
|
||||
|
@@ -0,0 +1,27 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
HiiPackageList.c
|
||||
|
||||
Abstract:
|
||||
|
||||
EFI_HII_PACKAGE_LIST_PROTOCOL as defined in UEFI 2.1 spec.
|
||||
|
||||
--*/
|
||||
|
||||
#include "EfiSpec.h"
|
||||
#include EFI_PROTOCOL_DEFINITION (HiiPackageList)
|
||||
|
||||
EFI_GUID gEfiHiiPackageListProtocolGuid = EFI_HII_PACKAGE_LIST_PROTOCOL_GUID;
|
||||
|
||||
EFI_GUID_STRING(&gEfiHiiPackageListProtocolGuid, "HII Package List Protocol", "HII Package List 2.1 protocol");
|
@@ -0,0 +1,36 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
HiiPackageList.h
|
||||
|
||||
Abstract:
|
||||
|
||||
EFI_HII_PACKAGE_LIST_PROTOCOL as defined in UEFI 2.1 spec.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _HII_PACKAGE_LIST_H_
|
||||
#define _HII_PACKAGE_LIST_H_
|
||||
|
||||
#include "EfiHii.h"
|
||||
|
||||
#define EFI_HII_PACKAGE_LIST_PROTOCOL_GUID \
|
||||
{ \
|
||||
0x6a1ee763, 0xd47a, 0x43b4, {0xaa, 0xbe, 0xef, 0x1d, 0xe2, 0xab, 0x56, 0xfc} \
|
||||
}
|
||||
|
||||
typedef EFI_HII_PACKAGE_LIST_HEADER * EFI_HII_PACKAGE_LIST_PROTOCOL;
|
||||
|
||||
extern EFI_GUID gEfiHiiPackageListProtocolGuid;
|
||||
|
||||
#endif
|
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -54,6 +54,8 @@ EFI_STATUS
|
||||
Routine Description:
|
||||
This function adds the string String to the group of strings owned by PackageList, with the
|
||||
specified font information StringFontInfo and returns a new string id.
|
||||
The new string identifier is guaranteed to be unique within the package list.
|
||||
That new string identifier is reserved for all languages in the package list.
|
||||
|
||||
Arguments:
|
||||
This - A pointer to the EFI_HII_STRING_PROTOCOL instance.
|
||||
@@ -104,13 +106,19 @@ EFI_STATUS
|
||||
String - Points to the new null-terminated string.
|
||||
StringSize - On entry, points to the size of the buffer pointed to by
|
||||
String, in bytes. On return,
|
||||
points to the length of the string, in bytes.
|
||||
StringFontInfo - If not NULL, points to the string's font information.
|
||||
It's caller's responsibility to free this buffer.
|
||||
points to the length of the string, in bytes.
|
||||
StringFontInfo - Points to a buffer that will be callee allocated and will
|
||||
have the string's font information into this buffer.
|
||||
The caller is responsible for freeing this buffer.
|
||||
If the parameter is NULL a buffer will not be allocated
|
||||
and the string font information will not be returned.
|
||||
|
||||
Returns:
|
||||
EFI_SUCCESS - The string was returned successfully.
|
||||
EFI_NOT_FOUND - The string specified by StringId is not available.
|
||||
The specified PackageList is not in the database.
|
||||
EFI_INVALID_LANGUAGE - The string specified by StringId is available but
|
||||
not in the specified language.
|
||||
EFI_BUFFER_TOO_SMALL - The buffer specified by StringSize is too small to
|
||||
hold the string.
|
||||
EFI_INVALID_PARAMETER - The String or Language or StringSize was NULL.
|
||||
@@ -147,7 +155,8 @@ EFI_STATUS
|
||||
|
||||
Returns:
|
||||
EFI_SUCCESS - The string was updated successfully.
|
||||
EFI_NOT_FOUND - The string specified by StringId is not in the database.
|
||||
EFI_NOT_FOUND - The string specified by StringId is not in the database.
|
||||
The specified PackageList is not in the database.
|
||||
EFI_INVALID_PARAMETER - The String or Language was NULL.
|
||||
EFI_OUT_OF_RESOURCES - The system is out of resources to accomplish the task.
|
||||
|
||||
@@ -182,6 +191,7 @@ EFI_STATUS
|
||||
EFI_BUFFER_TOO_SMALL - The LanguagesSize is too small to hold the list of
|
||||
supported languages. LanguageSize is updated to
|
||||
contain the required size.
|
||||
EFI_NOT_FOUND - The specified PackageList is not in the database.
|
||||
|
||||
--*/
|
||||
;
|
||||
@@ -220,9 +230,12 @@ EFI_STATUS
|
||||
EFI_BUFFER_TOO_SMALL - The buffer specified by SecondLanguagesSize is
|
||||
too small to hold the returned information.
|
||||
SecondLanguageSize is updated to hold the size of
|
||||
the buffer required.
|
||||
|
||||
--*/
|
||||
the buffer required.
|
||||
EFI_INVALID_LANGUAGE - The language specified by FirstLanguage is not
|
||||
present in the specified package list.
|
||||
EFI_NOT_FOUND - The specified PackageList is not in the Database.
|
||||
|
||||
--*/
|
||||
;
|
||||
//
|
||||
// Interface structure for the EFI_HII_STRING_PROTOCOL
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2005 - 2009, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -15,7 +15,7 @@ Module Name:
|
||||
|
||||
Abstract:
|
||||
|
||||
UEFI IPv4 protocol.
|
||||
EFI_IP4_PROTOCOL definition in UEFI 2.2 specification.
|
||||
|
||||
--*/
|
||||
|
||||
@@ -80,7 +80,7 @@ typedef struct _EFI_IP4_ICMP_TYPE {
|
||||
typedef struct {
|
||||
BOOLEAN IsStarted;
|
||||
UINT32 MaxPacketSize;
|
||||
|
||||
|
||||
EFI_IP4_CONFIG_DATA ConfigData;
|
||||
BOOLEAN IsConfigured;
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -35,6 +35,8 @@ Abstract:
|
||||
|
||||
EFI_FORWARD_DECLARATION (EFI_SIMPLE_FILE_SYSTEM_PROTOCOL);
|
||||
EFI_FORWARD_DECLARATION (EFI_FILE);
|
||||
typedef struct _EFI_FILE *EFI_FILE_HANDLE;
|
||||
typedef struct _EFI_FILE EFI_FILE_PROTOCOL;
|
||||
|
||||
typedef
|
||||
EFI_STATUS
|
||||
@@ -356,7 +358,7 @@ EFI_STATUS
|
||||
;
|
||||
|
||||
#define EFI_FILE_HANDLE_REVISION 0x00010000
|
||||
typedef struct _EFI_FILE {
|
||||
struct _EFI_FILE {
|
||||
UINT64 Revision;
|
||||
EFI_FILE_OPEN Open;
|
||||
EFI_FILE_CLOSE Close;
|
||||
@@ -368,7 +370,7 @@ typedef struct _EFI_FILE {
|
||||
EFI_FILE_GET_INFO GetInfo;
|
||||
EFI_FILE_SET_INFO SetInfo;
|
||||
EFI_FILE_FLUSH Flush;
|
||||
} *EFI_FILE_HANDLE;
|
||||
};
|
||||
|
||||
extern EFI_GUID gEfiSimpleFileSystemProtocolGuid;
|
||||
|
||||
|
Reference in New Issue
Block a user