When i try use DDK with driver
VMProtectBeginUltra("DriverEntry");
...
VMProtectEnd();
or
VMProtectDecryptStringA("some char");
i got this error

When use SDK in C++ app all ok
When i try use DDK with driver
VMProtectBeginUltra("DriverEntry");
...
VMProtectEnd();
or
VMProtectDecryptStringA("some char");
i got this error

When use SDK in C++ app all ok
It seems you forgot to put VMProtectDDK32/64.lib into your working directory.
Нет, отправил вам исходники для анализа.
WKMD 10.0.18362 или 10.0.17753 или 17134
К сожалению не смог подружить WDK 10 и VS2015, он есть подозрение, что проблема в VMProtectDDK.h файле:
#define VMP_API __stdcall
#define VMP_WCHAR wchar_t
#ifdef _WIN64
#pragma comment(lib, "VMProtectDDK64.lib")
#else
#pragma comment(lib, "VMProtectDDK32.lib")
#endif // _WIN64
Попробуйте сделать VMP_API пустым для x64:
#define VMP_WCHAR wchar_t
#ifdef _WIN64
#define VMP_API
#pragma comment(lib, "VMProtectDDK64.lib")
#else
#define VMP_API __stdcall
#pragma comment(lib, "VMProtectDDK32.lib")
#endif // _WIN64
Посмотрите на наши примеры использования DDK из папки
C:\Users\Public\Documents\VMProtect\Licensing\DDK\
WKMD 10+ не поддерживается, проверил на вашем примере