Hi,
Does VMProtect sopport Unreal Engine 4? And how to or has User Manual?
I try to use VMProtectSDK.h to UE4 C++ project.
But got link fatal error lnk1104 cannot open file ‘VMProtectSDK64.lib’
Seems UE4 can’t direct import lib.
I marked below and try A new, community-hosted Unreal Engine Wiki - Announcements - Epic Developer Community Forums
#ifdef _WIN64
#pragma comment(lib, “VMProtectSDK64.lib”)
#else
#pragma comment(lib, “VMProtectSDK32.lib”)
#endif // _WIN64
VMProtectBegin(“Ultra”);
VMProtectEnd();
Then got error.
error LNK2019: unresolved external symbol __imp__VMProtectBegin
error LNK2019: unresolved external symbol __imp__VMProtectEnd
Please help me.
Thank you.
Admin
January 10, 2017, 12:31pm
2
It seems you forgot to copy VMProtectSDK64.lib from %VMProtect%/Lib into your working directory.
1.I re follow Linking_Static_Libraries_Using_The_Build_System again.
After over a year in maintenance mode, the official Unreal Engine Wiki is now permanently offline. These resources now live on a new community-run Unreal Engine Community Wiki — https://unrealcommunity.wiki/! You will be able to find content from...
Reading time: 1 min 🕑
Likes: 43 ❤
2 follow How to Link External C Libraries .dll .lib With Your Project & Package With Game
After over a year in maintenance mode, the official Unreal Engine Wiki is now permanently offline. These resources now live on a new community-run Unreal Engine Community Wiki — https://unrealcommunity.wiki/! You will be able to find content from...
Reading time: 1 min 🕑
Likes: 43 ❤
VMProtectSDK64.dll copy to UE4 project folder Binaries\Win64
Then it works.
Thank you.