[SDK:RTL] Add RtlInitUnicodeString() and RtlGUIDFromString()

This commit is contained in:
2024-08-09 08:34:04 -04:00
parent 0998d5c417
commit ceb86e3cb2
4 changed files with 263 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ Abstract:
#define _NTRTL_H
#include <string.h>
#include <ntdef.h>
//
// Memory operations.
@@ -26,4 +27,18 @@ Abstract:
#define RtlFillMemory(Destination, Length, Fill) memset((Destination), (Fill), (Length))
#define RtlZeroMemory(Destination, Length) memset((Destination), 0, (Length))
VOID
NTAPI
RtlInitUnicodeString (
OUT PUNICODE_STRING Destination,
IN PCWSTR Source
);
NTSTATUS
NTAPI
RtlGUIDFromString (
IN PUNICODE_STRING String,
OUT GUID *Guid
);
#endif /* !_NTRTL_H */