summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/efilib.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/inc/efilib.h b/inc/efilib.h
index ed332aa..40e3745 100644
--- a/inc/efilib.h
+++ b/inc/efilib.h
@@ -580,11 +580,22 @@ IPrintAt (
);
UINTN
-APrint (
+AsciiPrint (
IN CONST CHAR8 *fmt,
...
);
+/* For compatibility with previous versions */
+#define APrint AsciiPrint
+
+UINTN
+AsciiVSPrint(
+ OUT CHAR8 *Str,
+ IN UINTN StrSize,
+ IN CONST CHAR8 *fmt,
+ va_list args
+);
+
VOID
ValueToHex (
IN CHAR16 *Buffer,