Rename Print() to VPrintXY() to eliminate symbol collision with the Print function in the UefiLib

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6248 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney 2008-10-27 02:33:17 +00:00
parent dc31771382
commit c17f446756
1 changed files with 2 additions and 2 deletions

View File

@ -646,7 +646,7 @@ DisableQuietBoot (
**/
UINTN
Print (
VPrintXY (
IN EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput,
IN EFI_UGA_DRAW_PROTOCOL *UgaDraw,
IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Sto,
@ -912,6 +912,6 @@ PrintXY (
return 0;
}
return Print (GraphicsOutput, UgaDraw, Sto, X, Y, ForeGround, BackGround, Fmt, Args);
return VPrintXY (GraphicsOutput, UgaDraw, Sto, X, Y, ForeGround, BackGround, Fmt, Args);
}