Files
2024-06-16 13:29:53 -07:00

26 lines
300 B
C

#include <Windows.h>
#include <iostream>
// Define necessary structures and types
typedef struct _UNICODE_STRING {
USHORT Length;
USHORT MaximumLength;
PWSTR Buffer;
} UNICODE_STRING, *PUNICODE_STRING;
<MAIN>
{
DWORD test = 10;
while(TRUE){
if (test <= 12){
break;
}
}
}