码迷,mamicode.com
首页 > 编程语言 > 详细

初次接触VC++载入自己定义LIB 即静态链接

时间:2016-03-01 14:23:51      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

分为两部分

第一部分  LIBproject 用来生成LIB文件

#ifndef _myfun
#define _myfun
int myfun(int x,int y)

{

return x+y;

}
#endif


将lib文件放在Visual Studio\VC98\Lib文件夹里

将myfun.h移到Visual Studio\VC98\Include文件夹里


第二部分 控制台project 用来调用LIB中的函数

#include "stdafx.h"
#include <myfun.h>
#include <iostream>
#include <conio.h>
using namespace std;


extern int myfun(int,int);


int _tmain(int argc, _TCHAR* argv[])
{
cout<<myfun(3,4)<<endl;
_getch();
return 0;
}




初次接触VC++载入自己定义LIB 即静态链接

标签:

原文地址:http://www.cnblogs.com/bhlsheji/p/5230621.html

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