Calling functions in a DLL from C++

前端 未结 7 2348
清歌不尽
清歌不尽 2020-11-30 00:17

I have a solution in VS 2008 with 2 projects in it. One is a DLL written in C++ and the other is a simple C++ console application created from a blank project. I would like

相关标签:
7条回答
  • 2020-11-30 01:14

    When the DLL was created an import lib is usually automatically created and you should use that linked in to your program along with header files to call it but if not then you can manually call windows functions like LoadLibrary and GetProcAddress to get it working.

    0 讨论(0)
提交回复
热议问题