Embedding DLL into exe

I hope that I can find my reply here

From Delphi compiler (10.x) I got both app.exe and app.enu files. The app.enu file contains localized english strings that is indeed a DLL with STRING and RCDATA sections. App.exe loads the STRING and RCDATA sections from app.enu with a simple call of

LoadLibraryEx(FileName, 0, LOAD_LIBRARY_AS_DATAFILE);

Q1 : I would like to merge both files (.exe + .enu/dll) and load the localized STRING and RCDATA sections in my exe app. is that possible
and then pack it with VMProtect software

Q2: in case this is not possible is it possible to pack a DLL standalone and load it by my app.exe that is also wmprotected ?

Happy new year.

Q1 : I would like to merge both files (.exe + .enu/dll) and load the localized STRING and RCDATA sections in my exe app. is that possible
and then pack it with VMProtect software

Yes, it’s possible.

So how to proceed ??
Rgds,

Just add required DLLs into the “Files” section

And if I do a loadlibrary from thecompressedfile.exe it will work ?

Yes, it works.

Thanks, I’ll give a try asap