码迷,mamicode.com
首页 > 其他好文 > 详细

codeblocks 下 添加动态链接库

时间:2014-11-06 22:05:10      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:codeblocks 下 添加动态链接库

手动创建:

(1)file->new->project->dynamic link library;

名字:dynamiclib

将工程自动生成的main.cpp文件删除,自动添加一个.c文件(trydll.c) 将main.h 文件删除 创建一个trydll.h文件:

trydll.c:

#include <stdio.h>
#include <string.h>

#include "trydll.h"

void hello(){
    printf("hello\n");
    printf("xd");
}

trydll.h:

#ifndef __TRYDLL_H__INCLUDED
#define __TRYDLL_H__INCLUDED

#include <windows.h>

/*  To use this exported function of dll, include this header
 *  in your project.
 */

#ifdef BUILD_DLL
    #define DLL_EXPORT __declspec(dllexport)
#else
    #define DLL_EXPORT __declspec(dllimport)
#endif


#ifdef __cplusplus
extern "C"
{
#endif

void DLL_EXPORT hello();

#ifdef __cplusplus
}
#endif

#endif // __trydll_H__

将工程编译,生成:

\dynamiclib\bin\Debug下:

bubuko.com,布布扣

测试:

创建一个c工程,实现上面动态库的调用:
bubuko.com,布布扣
将trydll.h文件添加进去 并且将上面的:bubuko.com,布布扣
文件 添加到新的trydll工程下的 \bin\Debug\目录下。
编译-->执行......:

#include <stdio.h>
#include <stdlib.h>

#include "trydll.h"

int main()
{
    hello();
    printf("Hello world!\n");
    return 0;
}
结果:
bubuko.com,布布扣

可以简单的实现:链接动态库的方法。

还有就是在:project-->build options->Debug->linker settings 添加(生成动态库那个路径下的文件):
bubuko.com,布布扣

但是 此方法 我没有实现成功,还望大神们指点。

codeblocks 下 添加动态链接库

标签:codeblocks 下 添加动态链接库

原文地址:http://blog.csdn.net/xd_122/article/details/40866185

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