VMProtect Driver error by VS2017

Issues related to VMProtect
Post Reply
lwbvmp
Posts: 1
Joined: Sat Apr 28, 2018 1:34 pm

VMProtect Driver error by VS2017

Post 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
Admin
Site Admin
Posts: 2566
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: VMProtect Driver error by VS2017

Post 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
Post Reply