VMProtect使用教程

1.下载SDK,C++包含库及目录
VMProtect使用教程_第1张图片

2.调用设置
VMProtect使用教程_第2张图片

#include
#include “VMProtectSDK.h”

int main()
{
//最好用函数名标记
VMProtectBegin(“main”); //虚拟
//VMProtectBeginVirtualization(“main”);//虚拟
//VMProtectBeginMutation(“main”);//变异
//VMProtectBeginUltra(“main”);//超级 (变异 + 虚拟)
system(“pause”);
VMProtectEnd();
return 1;
}

你可能感兴趣的:(系统)