Implement RtlStringLength() and RtlStringToWideString() routines

This commit is contained in:
2022-10-25 23:45:12 +02:00
parent 0ead750489
commit b1c08e4a9f
4 changed files with 115 additions and 0 deletions

View File

@@ -67,6 +67,17 @@ RtlSetMemory(OUT PVOID Destination,
IN UCHAR Byte,
IN SIZE_T Length);
XTCDECL
SIZE_T
RtlStringLength(IN CONST PUCHAR String,
IN SIZE_T MaxLength);
XTCDECL
INT
RtlStringToWideString(PWCHAR Destination,
CONST PUCHAR *Source,
SIZE_T Length);
XTCDECL
INT
RtlWideStringCompare(IN CONST PWCHAR String1,