You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
495 B
22 lines
495 B
#include "ClassDemo.hpp"
|
|
|
|
// ignore this warning... its VS...
|
|
THEO_OBFUSCATE(extern "C" int main()
|
|
{
|
|
AllocConsole();
|
|
freopen("conin$", "r", stdin);
|
|
freopen("conout$", "w", stdout);
|
|
freopen("conout$", "w", stderr);
|
|
printf("hello world\n");
|
|
getchar();
|
|
|
|
MessageBoxA(0, "Demo", "Hello From main!", 0);
|
|
UsermodeMutateDemo();
|
|
UsermodeNoObfuscation();
|
|
|
|
VirtualFuncDemo DemoInstance = Demo();
|
|
DemoInstance.PrintTest();
|
|
|
|
VirtualFuncDemo Demo2Instance = Demo2();
|
|
Demo2Instance.PrintTest();
|
|
}) |