标签: c visual-studio dll
在DLL(在运行时链接)中,我需要在我的应用程序中调用静态链接的函数。
我在Linux端实现了将应用程序与-rdynamic gcc选项相关联,但是使用Visual Studio我无法找到将所有非静态符号导出到动态库并链接到没有unresolved symbol错误的DLL。
-rdynamic
unresolved symbol
_declspec(dllimport)
_declspec(dllexport)
有没有更好的方法来解决这个问题?