博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
21.4 windows_21_Library_use_DLL 动态库补充4
阅读量:6293 次
发布时间:2019-06-22

本文共 552 字,大约阅读时间需要 1 分钟。

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

转载于:https://www.cnblogs.com/nfking/p/5573275.html

你可能感兴趣的文章
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>
Unbuntu安装遭遇 vmware上的Easy install模式
查看>>
几个常用的ASP木马
查看>>
python分析postfix邮件日志的状态
查看>>
Mysql-5.6.x多实例配置
查看>>
psutil
查看>>
在git@osc上托管自己的代码
查看>>
机器学习算法:朴素贝叶斯
查看>>
小五思科技术学习笔记之扩展访问列表
查看>>
使用Python脚本检验文件系统数据完整性
查看>>
使用MDT部署Windows Server 2003 R2
查看>>
Redhat as5安装Mysql5.0.28
查看>>
通过TMG发布ActiveSync
查看>>
Web服务器的配置与管理(4) 配置访问权限和安全
查看>>
ClientScriptManager与ScriptManager向客户端注册脚本的区别
查看>>
js和php中几种生成验证码的方式
查看>>
android UI进阶之仿iphone的tab效果1
查看>>
这是我的第1个C#程序(向控制台输出一句话)
查看>>
html
查看>>