embed DLL in MFC C++ EXE?

前端 未结 2 1909
孤独总比滥情好
孤独总比滥情好 2020-12-06 20:23

Is it possible to embed an external CLI/C++ DLL into a MFC EXE as a embedded resource or something like that? My application currently connects to DLL sitting right beside i

2条回答
  •  情歌与酒
    2020-12-06 21:26

    You could try using Enigma Virtual Box. This will pack DLLs into an EXE so that LoadLibrary "just works". Of course, if it's a C++/CLI DLL then you'll still need the .NET framework installed.

提交回复
热议问题