Implement printf-alike wide string formatting mechanism, currently without floating point numbers support

This commit is contained in:
2024-02-15 22:51:28 +01:00
parent 8a62a2b367
commit 8dd0e70dd9
4 changed files with 1426 additions and 3 deletions

View File

@@ -12,6 +12,7 @@
#include <xtdefs.h>
#include <xtstruct.h>
#include <xttypes.h>
#include <rtltypes.h>
/* Routines used by XTLDR */
@@ -122,6 +123,12 @@ RtlFillMemory(OUT PVOID Destination,
IN SIZE_T Length,
IN UCHAR Value);
XTAPI
XTSTATUS
RtlFormatWideString(IN PRTL_PRINT_CONTEXT Context,
IN PCWSTR Format,
IN VA_LIST ArgumentList);
XTAPI
VOID
RtlMoveMemory(OUT PVOID Destination,