Linking a DLL in Visual Studio

前端 未结 2 482
余生分开走
余生分开走 2021-01-06 05:18

I\'m using Visual Studio C++ 2005 on Windows XP.

I have created a DLL shared library using Visual Studio C++ 2005.

However, I am not sure how to link it. Nor

2条回答
  •  醉梦人生
    2021-01-06 05:40

    When you create the DLL there should be a .lib file created for the purpose of dynamic linking. You can use these just as you would static .lib files.

提交回复
热议问题