近期有个需求,要生成一个dll 文件.文件里的函数都是採用 stdcall 函数调用约定,可是不希望函数名被修饰(add 被修饰成 add@8). 这时就要用def 文件了. 比方我有以下两个函数: extern "C" int _stdcall add(int a, int b) { return a + b; } extern "C" int _stdcall sub(int a, int b) { return a - b; } def 文件(我命名为dll.…
Visual Studio命令行创建库文件lib OS:win7 旗舰版SP1 64位 编译器: VS 2013 express 的cl 建一个文件Static_Lib.h,源代码如下 #ifndef _STATIC_LIB_H_ #define _STATIC_LIB_H_ int Add ( int , int ); #endif 同一个文件夹下建一个文件Static_Lib.c,源代码如下 #include "Static_Lib.h" int Add (int a, int b…