Are you sayinng you want to use your dll in your exe? What kind of dll is
it and what kind of exe? If its a normal shared win32 dll you need to at
least build your app with the lib file you created with the dll, and include
the header (.h) file, and then finally make sure that the dll is accessible
to the exe (I just put copies in my debug and release folders).
If it doesn't work....make sure your dll is exporting your functions. Use:
dumpbin mylib.dll /exports to see what functions have been exported.....
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.