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