#include "VMProtectDDK.h"
......
KdPrint((VMProtectDecryptStringA("DriverEntry..... \n")));
link error _imp_VMProtextDecryptStringA
do you have some example for protect driver…thanks vevrymuch.
#include "VMProtectDDK.h"
......
KdPrint((VMProtectDecryptStringA("DriverEntry..... \n")));
link error _imp_VMProtextDecryptStringA
do you have some example for protect driver…thanks vevrymuch.
It seems you forgot to put VMProtectDDK32.lib/VMProtectDDK64.lib in your project directory. Also check the following code in VMProtectDDK.h:
#ifdef _WIN64
#pragma comment(lib, "VMProtectDDK64.lib")
#else
#pragma comment(lib, "VMProtectDDK32.lib")
#endif // _WIN64