How do I use unmanaged DLL in C++ win32 application?
- by Nick
I have a 3rd party DLL that I am trying to use in a win32 C++ application. The DLL alone is all that I have. I believe this library is written in C and I assume is not exposed to COM. Is LoadLibrary() the function must commonly used for this task in Windows? If so can someone provide me with an example of how it is used?
I created a blank win32 in VS so I don't have any of the windows specific headers included etc.
Thanks!