summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Library/UefiLib.h
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-15 14:31:45 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-15 14:31:45 +0000
commit51969ecb37e8d671c0237e936d79a51b7ca646ff (patch)
tree1d62d24d3a5cf080378d7dc0ec8d73ee6c017e19 /MdePkg/Include/Library/UefiLib.h
parentaeb90c4a15e90a85121e47b541baeaeff1e150a4 (diff)
downloadedk2-platforms-51969ecb37e8d671c0237e936d79a51b7ca646ff.tar.xz
Fix several minor coding style issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8092 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/UefiLib.h')
-rw-r--r--MdePkg/Include/Library/UefiLib.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/MdePkg/Include/Library/UefiLib.h b/MdePkg/Include/Library/UefiLib.h
index 340a030030..401695293a 100644
--- a/MdePkg/Include/Library/UefiLib.h
+++ b/MdePkg/Include/Library/UefiLib.h
@@ -1067,6 +1067,7 @@ AsciiErrorPrint (
...
);
+
/**
Prints a formatted Unicode string to a graphics console device specified by
ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.
@@ -1087,8 +1088,8 @@ AsciiErrorPrint (
If Format is NULL, then ASSERT().
If Format is not aligned on a 16-bit boundary, then ASSERT().
- @param X X coordinate to print the string.
- @param Y Y coordinate to print the string.
+ @param PointX X coordinate to print the string.
+ @param PointY Y coordinate to print the string.
@param ForeGround The foreground color of the string being printed. This is
an optional parameter that may be NULL. If it is NULL,
then the foreground color of the current ConOut device
@@ -1108,8 +1109,8 @@ AsciiErrorPrint (
UINTN
EFIAPI
PrintXY (
- IN UINTN X,
- IN UINTN Y,
+ IN UINTN PointX,
+ IN UINTN PointY,
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL
IN CONST CHAR16 *Format,
@@ -1135,8 +1136,8 @@ PrintXY (
string is printed, and 0 is returned.
If Format is NULL, then ASSERT().
- @param X X coordinate to print the string.
- @param Y Y coordinate to print the string.
+ @param PointX X coordinate to print the string.
+ @param PointY Y coordinate to print the string.
@param ForeGround The foreground color of the string being printed. This is
an optional parameter that may be NULL. If it is NULL,
then the foreground color of the current ConOut device
@@ -1156,8 +1157,8 @@ PrintXY (
UINTN
EFIAPI
AsciiPrintXY (
- IN UINTN X,
- IN UINTN Y,
+ IN UINTN PointX,
+ IN UINTN PointY,
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL
IN CONST CHAR8 *Format,