Rename DxePiLib to DxeServicesLib

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6496 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2008-11-13 08:33:28 +00:00
parent 484c77852e
commit fdbee2e42b

View File

@@ -21,7 +21,7 @@
/** /**
Locates a requested firmware section within a file and returns it to a buffer allocated by this function. Locates a requested firmware section within a file and returns it to a buffer allocated by this function.
PiLibGetSectionFromAnyFv () is used to read a specific section from a file within a firmware volume. The function GetSectionFromAnyFv () is used to read a specific section from a file within a firmware volume. The function
will search the first file with the specified name in all firmware volumes in the system. The search order for firmware will search the first file with the specified name in all firmware volumes in the system. The search order for firmware
volumes in the system is determistic but abitrary if no new firmware volume is added into the system between volumes in the system is determistic but abitrary if no new firmware volume is added into the system between
each calls of this function. each calls of this function.
@@ -64,7 +64,7 @@
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI EFIAPI
PiLibGetSectionFromAnyFv ( GetSectionFromAnyFv (
IN CONST EFI_GUID *NameGuid, IN CONST EFI_GUID *NameGuid,
IN EFI_SECTION_TYPE SectionType, IN EFI_SECTION_TYPE SectionType,
IN UINTN SectionInstance, IN UINTN SectionInstance,
@@ -75,7 +75,7 @@ PiLibGetSectionFromAnyFv (
/** /**
Locates a requested firmware section within a file and returns it to a buffer allocated by this function. Locates a requested firmware section within a file and returns it to a buffer allocated by this function.
PiLibGetSectionFromCurrentFv () is used to read a specific section from a file within the same firmware volume from which GetSectionFromFv () is used to read a specific section from a file within the same firmware volume from which
the running image is loaded. If the specific file is found, the function searches the specifc firmware section with type SectionType. the running image is loaded. If the specific file is found, the function searches the specifc firmware section with type SectionType.
The details of this search order is defined in description of EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadSection () The details of this search order is defined in description of EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadSection ()
found in PI Specification. found in PI Specification.
@@ -116,7 +116,7 @@ PiLibGetSectionFromAnyFv (
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI EFIAPI
PiLibGetSectionFromCurrentFv ( GetSectionFromFv (
IN CONST EFI_GUID *NameGuid, IN CONST EFI_GUID *NameGuid,
IN EFI_SECTION_TYPE SectionType, IN EFI_SECTION_TYPE SectionType,
IN UINTN SectionInstance, IN UINTN SectionInstance,
@@ -128,7 +128,7 @@ PiLibGetSectionFromCurrentFv (
/** /**
Locates a requested firmware section within a file and returns it to a buffer allocated by this function. Locates a requested firmware section within a file and returns it to a buffer allocated by this function.
PiLibGetSectionFromCurrentFfs () searches the specifc firmware section with type SectionType in the same firmware file from GetSectionFromFfs () searches the specifc firmware section with type SectionType in the same firmware file from
which the running image is loaded. The details of this search order is defined in description of which the running image is loaded. The details of this search order is defined in description of
EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadSection () found in PI Specification. EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadSection () found in PI Specification.
@@ -163,7 +163,7 @@ PiLibGetSectionFromCurrentFv (
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI EFIAPI
PiLibGetSectionFromCurrentFfs ( GetSectionFromFfs (
IN EFI_SECTION_TYPE SectionType, IN EFI_SECTION_TYPE SectionType,
IN UINTN SectionInstance, IN UINTN SectionInstance,
OUT VOID **Buffer, OUT VOID **Buffer,