|
On 19-09-2016 17:01, Leinen, Rick
wrote:
Yes, that's the beauty with DLLs :) lua53.dll is a Win32 DLL, and lua.exe is also a "Windows program", just the console type. If you create a windowing Windows program, that is still just a Win32 application and the DLL works the exact same way from that. If your Windows Program is dotNET, you can use one of many wrappers to ease the usage. The only trouble you can get into, is if your DLL is 32bit and the Windows Program is 64bit, then you need a Lua53.dll compiled for 64bit (a 64bit process cannot load a 32bit DLL). /Erik |