mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
08fb26bb51
new functions, improved readme, ++
10 lines
231 B
C++
10 lines
231 B
C++
#include "StringManipulation.h"
|
|
|
|
VOID RtlInitEmptyUnicodeString(_Inout_ PUNICODE_STRING UnicodeString)
|
|
{
|
|
UnicodeString->Length = 0;
|
|
UnicodeString->MaximumLength = sizeof(UNICODE_STRING);
|
|
UnicodeString->Buffer = NULL;
|
|
|
|
return;
|
|
} |