您的位置:首页 > 其它

Window DLL and LIB export

2014-01-03 10:46 190 查看
1. lib export way

有三种导出方法,如下:

/IMPLIB 选项重写 LINK 在生成包含导出的程序时所创建的导入库的默认名称。
默认名称由主输出文件的基名称和扩展名 .lib 组成。 如果指定了下列一项或多项内容,则程序包含导出:

源代码中的
__declspec(dllexport) 关键字

.def 文件中的
EXPORTS 语句

LINK 命令中的
/EXPORT 规范

2. dllexport export way

_declspec( dllexport ) void fun1( ... )

{

......

}

_declspec( dllexport ) void fun2( )

{

......

}

3. .def export way

project GLRender will export GLRender.lib, and generate GLRender.dll

3.1 project property

by vs2010, create empty (win32) project, select dll configuration type,

or after generating project, modify configuration type to dll, see diagram as followings



3.2 add .def file to project



3.3 configure export

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: