Linking a DLL in Visual Studio

前端 未结 2 497
余生分开走
余生分开走 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:38

    This article explains Windows dlls well.

    The .LIB file associated with a DLL describes what (exported) symbols are present in the DLL, together with their locations.

提交回复
热议问题