mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
10 lines
247 B
C++
10 lines
247 B
C++
#include "StringManipulation.h"
|
|
|
|
VOID RtlInitEmptyUnicodeString(PUNICODE_STRING UnicodeString, PWCHAR Buffer, USHORT BufferSize)
|
|
{
|
|
UnicodeString->Length = 0;
|
|
UnicodeString->MaximumLength = BufferSize;
|
|
UnicodeString->Buffer = Buffer;
|
|
|
|
return;
|
|
} |