Chinaunix首页 | 论坛 | 博客
  • 博客访问: 623352
  • 博文数量: 262
  • 博客积分: 8433
  • 博客等级: 中将
  • 技术积分: 2141
  • 用 户 组: 普通用户
  • 注册时间: 2009-05-31 09:37
文章分类

全部博文(262)

文章存档

2012年(1)

2011年(168)

2010年(92)

2009年(1)

分类: C/C++

2010-12-04 22:42:31

1、生成MinDll
 
min.h

#define DllExport extern "C" _declspec(dllexport)
DllExport int Min(int a, int b);    //声明该函数导出

min.cpp

#include <stdio.h>
#include "min.h"

int Min(int a, int b)
{
 printf("Min is called");

 if (a >= b)
     return b;

 else
    return a;
}

2、将生成的lib,Dll文件拷贝到相应位置

3、编写测试程序

DllTest.cpp
 

#pragma comment(lib,"MinDll.lib")    //指令调用Dll-lib库

#include <stdio.h>
extern "C" _declspec(dllimport) int Min(int a,int b);

int main()

{

    int a;
    a = Min(8,10);
    printf("比较的结果为%d! \n",a);

    return 0;
}

 

文件: DllTest.rar
大小: 364KB
下载: 下载

阅读(1014) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~