Implement RtlCopyString() and RtlCopyWideString() routines

This commit is contained in:
2024-02-20 16:25:16 +01:00
parent 015faa53a0
commit 83a976dd3a
4 changed files with 99 additions and 0 deletions

View File

@@ -110,6 +110,18 @@ RtlCopyMemory(OUT PVOID Destination,
IN PCVOID Source,
IN SIZE_T Length);
XTAPI
VOID
RtlCopyString(IN PCHAR Destination,
IN PCCHAR Source,
IN ULONG Length);
XTAPI
VOID
RtlCopyWideString(IN PWCHAR Destination,
IN CONST PWCHAR Source,
IN ULONG Length);
XTAPI
LARGE_INTEGER
RtlDivideLargeInteger(IN LARGE_INTEGER Dividend,