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.
15 lines
326 B
15 lines
326 B
#include "ClassDemo.hpp"
|
|
|
|
ObfuscateRoutine
|
|
extern "C" int ModuleEntry()
|
|
{
|
|
MessageBoxA(0, "Demo", "Hello From Obfuscated Routine!", 0);
|
|
UsermodeMutateDemo();
|
|
UsermodeNoObfuscation();
|
|
|
|
VirtualFuncDemo DemoInstance = Demo();
|
|
DemoInstance.PrintTest();
|
|
|
|
VirtualFuncDemo Demo2Instance = Demo2();
|
|
Demo2Instance.PrintTest();
|
|
} |