mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
Rename RtlInitEmptyUnicodeString to RtlInitEmptyUnicodeString.cpp
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
VOID RtlInitEmptyUnicodeString(PUNICODE_STRING UnicodeString, PWCHAR Buffer, USHORT BufferSize)
|
||||
{
|
||||
UnicodeString->Length = 0;
|
||||
UnicodeString->MaximumLength = BufferSize;
|
||||
UnicodeString->Buffer = Buffer;
|
||||
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user