How to link a .DLL statically?

后端 未结 4 1979
庸人自扰
庸人自扰 2020-12-09 15:35

We have a (pure native C++) .DLL that is build by VS. As clients we have some native C++ applications and a .Net-Wrapper around this DLL written in C++/CLI. Finally there ar

4条回答
  •  感动是毒
    2020-12-09 16:10

    You can generate a dll and export the entry point to a lib using dllexport, this is explained here

    http://msdn.microsoft.com/en-us/library/3y1sfaz2.aspx

提交回复
热议问题