Page 1 of 1
VMProtect Driver error by VS2017
Posted: Sat Apr 28, 2018 1:44 pm
by lwbvmp
Code: Select all
#include "VMProtectDDK.h"
......
KdPrint((VMProtectDecryptStringA("DriverEntry..... \n")));
link error _imp_VMProtextDecryptStringA
do you have some example for protect driver...thanks vevrymuch.
3.jpg
2.jpg
Re: VMProtect Driver error by VS2017
Posted: Sun Apr 29, 2018 5:31 am
by Admin
It seems you forgot to put VMProtectDDK32.lib/VMProtectDDK64.lib in your project directory. Also check the following code in VMProtectDDK.h:
Code: Select all
#ifdef _WIN64
#pragma comment(lib, "VMProtectDDK64.lib")
#else
#pragma comment(lib, "VMProtectDDK32.lib")
#endif // _WIN64