| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1435 人关注过本帖
标题:创建动态链接库
取消只看楼主 加入收藏
BlueGuy
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:29
帖 子:4476
专家分:4055
注 册:2009-4-18
结帖率:94.72%
收藏
已结贴  问题点数:8 回复次数:0 
创建动态链接库
程序代码:
#ifdef _LIB
#ifndef HELLOWORLD_API
#define HELLOWORLD_API extern
#define    HELLOWORLDLIB_API extern
#pragma message("LIB")
#endif
#endif

#ifdef _USRDLL
#ifdef HELLOWORLDLIBDLL_EXPORTS
#define HELLOWORLD_API extern  __declspec(dllexport)
#define HELLOWORLDLIB_API extern __declspec(dllexport)
#pragma message("Create HELLOWORLD dllexport")
#else
#define HELLOWORLD_API extern __declspec(dllimport)
#define HELLOWORLDLIB_API extern __declspec(dllimport)
#pragma message("Using HELLOWORLD dllexport")
#endif
#endif

#ifdef __cplusplus
extern "C" {
#endif 

    HELLOWORLD_API void print();
    HELLOWORLD_API int add(int a, int b);

#ifdef __cplusplus
}
#endif 


程序代码:
#include <stdio.h>
#include "HelloWorldDll.h"

int main()
{
    print();
    int c = add(1, 2);
    return 0;
}

/*
void print()
{
    printf("hello world");
}

int add(int a, int b)
{
    return a+b;
}
*/
搜索更多相关主题的帖子: message color 动态 
2016-01-26 12:29
快速回复:创建动态链接库
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029162 second(s), 11 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved