windows_21_Library_use_DLL 动态库补充4
#include <iostream>
using namespace std;
//第2.1.1步 导入 lib
#pragma comment(lib,"../debug/windows_21_Library_DLL_test.lib")
//第2.1.2步 定义函数原型
int Dll_Add( int nAdd1, int nAdd2 );
extern "C"/*如果不加这个会出错*/ int Dll_Sub( int nSub1, int nSub2 );
//DEF导出定义函数原型
int Dll_Mul( int nMul1, int nMul2 );
int main( )
{
//第2.1.3步 使用函数
int nAdd = Dll_Add( 100, 100 );
int nSub = Dll_Sub( 100, 100 );
int nMul = Dll_Mul( 100, 100 );
cout << nAdd << endl << nSub << endl << nMul << endl;
}