summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-13 08:33:28 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-13 08:33:28 +0000
commitfdbee2e42b894666a9fd0ed64b7ed2a556a53987 (patch)
tree0feeb19e02a457684ec57942fb6a76600a0f2904 /MdePkg
parent484c77852ea2ba6ccc8e5c3b3ec4548588dd7f01 (diff)
downloadedk2-fdbee2e42b894666a9fd0ed64b7ed2a556a53987.zip
edk2-fdbee2e42b894666a9fd0ed64b7ed2a556a53987.tar.gz
edk2-fdbee2e42b894666a9fd0ed64b7ed2a556a53987.tar.bz2
Rename DxePiLib to DxeServicesLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6496 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Include/Library/DxeServicesLib.h (renamed from MdePkg/Include/Library/DxePiLib.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Include/Library/DxePiLib.h b/MdePkg/Include/Library/DxeServicesLib.h
index 9121347..4276374 100644
--- a/MdePkg/Include/Library/DxePiLib.h
+++ b/MdePkg/Include/Library/DxeServicesLib.h
@@ -21,7 +21,7 @@
/**
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
volumes in the system is determistic but abitrary if no new firmware volume is added into the system between
each calls of this function.
@@ -64,7 +64,7 @@
**/
EFI_STATUS
EFIAPI
-PiLibGetSectionFromAnyFv (
+GetSectionFromAnyFv (
IN CONST EFI_GUID *NameGuid,
IN EFI_SECTION_TYPE SectionType,
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.
- 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 details of this search order is defined in description of EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadSection ()
found in PI Specification.
@@ -116,7 +116,7 @@ PiLibGetSectionFromAnyFv (
**/
EFI_STATUS
EFIAPI
-PiLibGetSectionFromCurrentFv (
+GetSectionFromFv (
IN CONST EFI_GUID *NameGuid,
IN EFI_SECTION_TYPE SectionType,
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.
- 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
EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadSection () found in PI Specification.
@@ -163,7 +163,7 @@ PiLibGetSectionFromCurrentFv (
**/
EFI_STATUS
EFIAPI
-PiLibGetSectionFromCurrentFfs (
+GetSectionFromFfs (
IN EFI_SECTION_TYPE SectionType,
IN UINTN SectionInstance,
OUT VOID **Buffer,