Visual C ++:停止导出符号

时间:2013-05-17 18:11:35

标签: c++ windows dll visual-studio-2012

我正在开发一个dll项目,并使用以下内容清理我的一些导出符号名称:

#pragma comment(linker, "/EXPORT:Some_function=_Some_function@4")

其中Some_function被定义为,例如:

extern "C" __declspec(dllexport) void __stdcall Some_function(int);

检查我的dll,但是我看到Some_function和_Some_function @ 4都被导出了。有什么方法可以隐藏装饰的函数名称并仅导出已清理的名称吗?

0 个答案:

没有答案