I am kind of new to DLLs, but I am using a library provided from the maker of lua which contains all of it's major functions.
I want my exe to read the DLL from <dir>\bin rather than in <dir> (The same folder).
I think that I have to go into the .lib file and change the addresses of where VC++ reads from lua51.dll to bin\lua51.dll, but after trying that VC++ said the library was corrupt.
I am basically just trying to change where the exe requires the dll to be. Any suggestions or solutions to this?
I want my exe to read the DLL from <dir>\bin rather than in <dir> (The same folder).
I think that I have to go into the .lib file and change the addresses of where VC++ reads from lua51.dll to bin\lua51.dll, but after trying that VC++ said the library was corrupt.
I am basically just trying to change where the exe requires the dll to be. Any suggestions or solutions to this?
Comment