E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
――declspec
编译和编译选项
1、 动态链接库的编译Windows下编译动态链接库需要加关键字__
declspec
,如下:dll的导入:__
declspec
(dllimport)dll的导出:__
declspec
(dllexport
hongjunbj
·
2012-12-07 16:00
模块定义 (.def) 文件
也可以将__
declspec
(dllexport)用作指定导出函数的手段。在链接器阶段可以使用/DEF(指定模块定义文件)链接器选项调用.def文件。
xlm289348
·
2012-12-05 14:00
x264内联汇编
blog.csdn.net/edcrfvzl/article/details/1604819在x264.h中你可以观察到这样的语句:defineDECLARE_ALIGNED(type,var,n)__
declspec
HEVC_CJL
·
2012-12-04 23:00
汇编
C语言
C语言
x264
h.264
h.264
C/C++动态链接库的创建和使用,显式调用
下一步选择应用程序类型:DLL,附加选项是:空选项在这个项目中创建一个头文件:CustomDll.h #ifdef CustomDLL_EXPORTS #define CustomDLL_API_
declspec
soukenan
·
2012-12-03 21:43
动态链接库
创建和调用
Visual Studio 2010生成dll并使用
文件构建成功本例为作者仿照java中StringTokenizer做的Sample,cpp文件一并附上StringTokenizer.h#pragmaonce #ifdefEXPORTS #defineEXPORTS__
declspec
李三乎
·
2012-12-02 03:00
C++
dll
Visual
Studio
总结一下__
declspec
(dllimport)的作用
是时候总结一下__
declspec
(dllimport)的作用了。
qq1987924
·
2012-11-26 14:00
C++创建动态链接库示例
DLL的方法首先在VS2010下创建win32控制台工程,创建DLL项目,空项目,创建以下两个文件Add.h#ifdefMYLIBAPI #else #defineMYLIBAPIextern"C"__
declspec
mafuli007
·
2012-11-26 13:00
从static变量导出问题解析 __
declspec
(dllexport) 和 __
declspec
(dllimport)的作用
这段时间要把tinyxml从静态库弄成动态库,要用到__
declspec
(dllexport)和__
declspec
(dllimport)来导出dll和lib文件。
qq1987924
·
2012-11-26 10:00
C++ Dll 导出函数头文件
#pragmaonce #defineAFX_EXT_FUNC__
declspec
(dllimport) #ifdef_USRDLL #defineAFX_EXT_FUNC__
declspec
(dllexport
yunque100
·
2012-11-22 23:00
DLL中.def文件的使用
DLL中导出函数的声明有两种方式:一种为在函数声明中加上__
declspec
(dllexport),这里不再举例说明;另外一种方式是采用模块定义(.def) 文件声明,.def文件为链接器提供了有关被链接程序的导出
xitong
·
2012-11-21 15:00
dll
DLL中.def文件的使用
DLL中导出函数的声明有两种方式:一种为在函数声明中加上__
declspec
(dllexport),这里不再举例说明;另外一种方式是采用模块定义(.def)文件声明,.def文件为链接器提供了有关被链接程序的导出
ithzhang
·
2012-11-21 15:00
dll添加.def文件与直接在需要导出的函数定义处指定_
declspec
( dllexport )有区别吗?
为dll添加.def文件与直接在需要导出的函数定义处指定_
declspec
(dllexport)有区别吗?如果有是什么区别?
ithzhang
·
2012-11-21 14:00
dll添加.def文件与直接在需要导出的函数定义处指定_
declspec
( dllexport )有区别吗?
为dll添加.def文件与直接在需要导出的函数定义处指定_
declspec
( dllexport )有区别吗?如果有是什么区别?
xitong
·
2012-11-21 14:00
Export
VS2010中 C++创建DLL图解
新建头文件testdll.htestdll.h代码如下:#ifndefTestDll_H_#defineTestDll_H_#ifdefMYLIBDLL#defineMYLIBDLLextern"C"_
declspec
lonet
·
2012-11-20 16:00
[收藏]__
declspec
关键字详细用法
原文链接:http://hi.baidu.com/baiyw920/blog/item/a06ddb986314fd0f6e068c0c.html __
declspec
用于指定所给定类型的实例的与
yaokang522
·
2012-11-16 23:00
DLL中导出函数的声明有两种方式:
DLL中导出函数的声明有两种方式: 一种方式是:在函数声明中加上__
declspec
(dllexport);另外一种方式是:采用模块定义(.def)文件声明,(.def)文件为链接器提供了有关被链接程序的导出
mxdxm
·
2012-11-12 16:00
dll
__
declspec
(dllexport)与__
declspec
(dllimport)
区别 他们都是DLL内的关键字,即导出与导入。他们是将DLL内部的类与函数以及数据导出与导入时使用的。 dllexport是在这些类、函数以及数据的申明的时候使用。用他表明这些东西可以被外部函数使用,即(dllexport)是把DLL中的相关代码(类,函数,数据)暴露出来为其他应用程序使用。使用了(dllexport)关键字,相当于声明了紧接在(dllexport)关键字后面的相
lanmayi003
·
2012-11-07 22:00
动态库
宏定义
静态库
将C语言源代码编译成动态链接库
一、源代码我们创建一个C语言源程序:Test.c关键:__
declspec
(dllexport)申明将这个方法导出到DLL中。源代码:[cpp] viewplaincopyprint?
HMSIWTV
·
2012-11-07 18:00
C#调用C++编写的DLL函数, 以及各种类型的参数传递
1.如果函数只有传入参数,比如:C/C++Code CopyCodeToClipboard//C++中的输出函数int __
declspec
(dllexport)test(const int N){return
z397164725
·
2012-11-07 09:00
DLL文件编写和调用
在libipsi_crypto2.h中添加以下代码:extern"C"_
declspec
(dllexport)intAdd(inta,intb);libipsi_crypto2.cpp文件中添加以下代码
wklnewlife
·
2012-11-05 18:00
DLL运行期间动态加载
//dlltest.h文件 extern "C" { __
declspec
(dllexport) int _stdcall add(int a, int
daily_c
·
2012-11-05 10:20
C++
dll
vs
What does _imp_
mean?
http://bbs.csdn.net/topics/20122391__
declspec
(dllexport) is usedindll__
declspec
(dllimport) isusedinexeusingsomedllhttp
llrraa2010
·
2012-11-04 13:00
dll import
我相信写WIN32程序的人,做过DLL,都会很清楚__
declspec
(dllexport)的作用,它就是为了省掉在DEF文件中手工定义导出哪些函数的一个方法。
pud_zha
·
2012-11-02 16:00
DLL动态库使用要点概括
DLL使用步骤:1、编辑DLL,导出生成相应的.lib和.dll 为了让DLL导出一些函数,需要在每一个将要被导出的函数前加标识符:_
declspec
(dllexport)生成文件中.lib为引入库文件
fansongy
·
2012-11-01 18:00
win32中调用dll测试(简单)
// #include"stdafx.h" _
declspec
(dllexport)intadd(inta,intb) { returna+b; } _
declspec
(dllexport)intsubtract
ghevinn
·
2012-11-01 16:00
__
declspec
(dllexport) & __
declspec
(dllimport)(转)
2012-02-0922:25:21 __
declspec
(dllexport)声明一个导出函数,是说这个函数要从本DLL导出。我要给别人用。
leirainy
·
2012-11-01 11:00
Calling delphi DLL from MS Visual C++
youneedtodeclareallthefunctionsexportedbyyourDelphiDLLwiththekeywordsexport;stdcall;Secondly,yourVC++headerfileshoulddeclareallthefunctionsasoftype__
declspec
Plutus_Lee
·
2012-10-26 11:00
利用unsafe代碼在C++和C#之間傳遞圖像
1.先前一直采用逐像素拷貝的方法:C++中定義采集圖像函數:extern"C"__
declspec
(dllexpo
rocky69
·
2012-10-24 06:00
VC DLL学习入门
greatverve/archive/2010/11/19/vc-dll.html1用VC创建DLL动态链接库1.1创建dll项目1.2为dll项目编写源文件头文件dllDemo.hextern "C" _
declspec
C++ Coder
·
2012-10-23 14:00
动态链接库的使用方法
动态链接库加载的两种方法1.隐式链接2.显示加载一.隐式链接创建Win32Dynamic-LinkLibrary程序Dll1Dll1.cpp文件#defineDLL1_APIextern"C"_
declspec
woaiyu6464
·
2012-10-16 15:00
VC中创建DLL动态连接库的方法
(2)MyDll.h的内容如下:extern"C"_
declspec
(dllexport)intsum(inta,intb);//本文所有的例子只有一个sum即加法函数。
L_Andy
·
2012-10-15 14:00
mfc
dll
callback
library
hook
keyboard
C#调用非托管C编写DLL的数据类型转换
//C++中的DLL函数原型为 //extern"C"__
declspec
(dllexport)bool方法名一(constchar*变量名1,unsignedchar*变量名2) //extern"C
SunCherryDream
·
2012-10-15 10:00
c
String
C#
dll
float
byte
Visual 2012 C++ 创建和静态调用dll
创建dll的过程与文章:http://blog.csdn.net/g710710/article/details/7255744点击打开链接类似,但使用extern"C"_
declspec
(dllexport
atgdut
·
2012-10-14 20:22
C++笔记
vs2008 dll lib的生成和使用
mydll.h内容如下:extern"C"_
declspec
(dllexport)i
swqqcs
·
2012-10-11 21:00
mainwindow.obj:-1: 错误:LNK2019: 无法解析的外部符号 "__
declspec
(dllimport) public:
mainwindow.obj:-1:错误:LNK2019:无法解析的外部符号"__
declspec
(dllimport)public:void__thiscallHelp::sendCommand(classQStringconst
A_sungirl
·
2012-10-11 12:00
C#调用C++的Dll(dll,DLL)类型之间转换笔记
1, HWNDIntPtrpublicstaticexternboolGet_Msg_Test(IntPtrhwnd);//hwnd为C#窗体的句柄extern"C"__
declspec
(dllexport
jiangxinyu
·
2012-10-11 11:00
C++
String
api
C#
user
dll
VC中利用动态链接库工程生成dll和lib文件http://blog.csdn.net/li_canhui/article/details/6775918
#ifndef __ADD_H__ #define __ADD_H__ #include __
declspec
(dllexport) int add(int a, int b); #endif
wangjianno2
·
2012-10-10 20:00
基于VC++开发InlineHook网络数据发送接收函数
include #include #include #ifdef_MANAGED #pragmamanaged(push,off) #endif #defineHOOK_APIextern"C"_
declspec
yincheng01
·
2012-10-09 20:00
socket
网络
null
vc++
hook
winapi
VC++实现全局钩子勾住textout金山快译的原理实现
大家都对金山快译可以讲英文软件翻译成中文软件感到惊奇其实就是全局钩子勾住textout函数钩子头文件如下void__
declspec
(dllexport)WINAPIInstallHook(BOOL,DWORD
yincheng01
·
2012-10-09 20:00
null
dll
vc++
金山
Descriptor
winapi
vs2010中动态链接库的编写和调用
在生成的空文件中输入如下代码:extern"C"_
declspec
(dllexport)intadd(inti,intj){returni+j;}编译即可生成dll,lib(输入符号文件,非静态库的意思
zhubo22
·
2012-10-06 21:00
python中调用C++写的动态库
一、环境:WindowsXP+Python3.21.dll对应的源文件(m.cpp):[cpp] viewplaincopy#include extern "C" { _
declspec
suwei19870312
·
2012-09-27 15:00
C++
linux
windows
python
XP
dll
dll创建和调用
创建:工作需要,创建了个非MFC的注意的地方有:1classCMyCalc {public: CMyCalc(); virtual~CMyCalc();//__
declspec
(dllexport)intMyAdd
lgstudyvc
·
2012-09-24 10:00
工作
null
Class
dll
mfc
winapi
KHook
//KHook.h#ifdefKHOOK_DLL#defineKHOOK_API__
declspec
(dllexport)#else#defineKHOOK_API__
declspec
(dllimport
zhihu008
·
2012-09-21 10:00
Dll 库 DEF文件详解
DLL中导出函数的声明有两种方式:1、为在函数声明中加上__
declspec
(dllexport),这里不再举例说明;2、是采用模块定义(.def)文件声明,.def文件为链接器提供了有关被链接程序的导出
xuqiang918
·
2012-09-20 14:00
VC以裸函数的形式内联汇编
//VC以裸函数的形式内联汇编__
declspec
(naked)voidFun(){ _asm { ....
friendan
·
2012-09-19 13:00
汇编
解密
编译器
fun
技术小记3(dll)
在VC中,若用了__
declspec
(dllexport) ,就可不用.DEF文件了。.DEF文件主要用于指定程序的输入。
pud_zha
·
2012-09-19 10:00
c
dll
__
declspec
(dllimport)的作用
是时候总结一下__
declspec
(dllimport)的作用了。
mniwc
·
2012-09-18 20:00
api
Class
mfc
dll
exe
编译器
linux动态链接库导出函数控制
linux动态链接库导出函数控制2009-12-1120:24 阅读3 评论0windows环境的vc的话,可以方便的指定__
declspec
(dllexport)关键字来控制是否把dll中的函数导出
lionzl
·
2012-09-14 21:00
linux
object
gcc
table
library
linker
链接静态库时__imp_前缀错误
thenextquestiontoaskishowtogettheoptimizedform.Theanswercomesintheformofahintyougivetothecompiler.The__
declspec
co63
·
2012-08-31 09:27
静态库
__imp_
消息钩子的编写
消息钩子的编写KeyHookLib.h 1#ifdef KEYHOOKLIB_EXPORTS 2#define KEYHOOKLIB_API __
declspec
(dllexport) 3#else 4
逆向分析专栏
·
2012-08-31 01:00
上一页
24
25
26
27
28
29
30
31
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他