How do I use unmanaged DLL in C++ win32 application?

Posted by Nick on Stack Overflow See other posts from Stack Overflow or by Nick
Published on 2010-12-26T01:39:26Z Indexed on 2010/12/26 1:54 UTC
Read the original article Hit count: 467

Filed under:
|

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!

© Stack Overflow or respective owner

Related posts about c++

Related posts about visual-studio-2008