码迷,mamicode.com
首页 > Windows程序 > 详细

21.7 windows_21_Library_Variable_DLL_USE 动态库补充7

时间:2016-06-10 11:05:20      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

21.7 windows_21_Library_Variable_DLL_USE  动态库补充7

  1. // windows_21_Library_Variable_DLL_USE.cpp : 定义控制台应用程序的入口点。
  2. //
  3. #include "stdafx.h"
  4. //第三步,导入lib文件
  5. #pragma comment(lib,"../debug/windows_21_Library_Variable_DLL.lib")
  6. //__declspec(dllimport)导入相对于__declspec( dllexport )导出
  7. extern __declspec(dllimport)int g_nValue1;
  8. extern __declspec( dllimport )int g_nValue2;
  9. int _tmain(int argc, _TCHAR* argv[])
  10. {
  11. printf( "g_nValue1:%d\n", g_nValue1 );
  12. printf( "g_nValue2:%d\n", g_nValue2 );
  13. return 0;
  14. }





21.7 windows_21_Library_Variable_DLL_USE 动态库补充7

标签:

原文地址:http://www.cnblogs.com/nfking/p/5573311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!