搜索资源列表
Com_N
- 本程序调用了微软自带的mscomm控件,实现com口的数据接收,读者可自行添加发送数据功能。内附mscomm.ocx控件及其注册方法,本程序是用的静态链接库,为的是能在没有vc库的机器上也可以运行,所以个头大了点。-Microsoft's own mscomm controls, I realize com data reception, readers can add their own functions to send d
vc-svm
- VC的支持向量机(SVM)静态链接库(LIB)-VC Support Vector Machine (SVM) static link library (LIB)
ipsearcher
- 获得IP地址的来源的SDK开发包,静态链接库。-obtain IP addresses of the sources of SDK development kits, static library.
test-win32-lib
- win32平台之静态链接库的生成及测试小例子-win32 platform static link library generation and testing of small examples
ExampleForElisateStaticLinkLIB
- 创建静态链接库的程序,比较好懂,容易好学。-create static link library procedures, better understand and easy to learn.
GrabHook
- 一个远程注入DLL的静态链接库,其中的RemoteSend函数实现了利用游戏自身的套接字远程发送封包的功能,在XP下,VC6编译通过-a remote DLL into the static link library, RemoteSend function of the realization of the game using their own remote socket packet of this function, In X
dll_myown
- 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern "C"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针。-dynamic link library of writing. Static and D
Lesson19Code
- 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern "C"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针。-DLL in the preparation process. Static and dy
sunxindll
- 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。-DLL in the preparation process. Static and dynamic library of distinction, and the procedure call link static and dynamic library distinction.
test-win32-lib
- win32平台之静态链接库的生成及测试小例子-win32 platform static link library generation and testing of small examples
ExampleForElisateStaticLinkLIB
- 创建静态链接库的程序,比较好懂,容易好学。-create static link library procedures, better understand and easy to learn.
Ex110102
- 一个很经典的静态链接库实例,初学朋友可以通过此例学习生成静态链接库和调用的方法 先编译dlg1 class 后编译dlg class -a very classic example of the static link, Beginners friends through this study were generated static link library and the use of the first class afte
Code
- 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern "C"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针。-DLL in the preparation process. Static and dy
DllTest
- 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别-Dynamic link library preparation process. Static library and dynamic library distinction, and call procedures in the static library and dynamic link library when the difference
lib
- 关于静态链接库的编辑,有一定使用价值,在自己所需要建库使用相关的方法!-On the static link library editor, has a certain value, in their need to build database-related methods of use!
VC-STATIC-FUNCTION
- VC静态链接库的实例程序,包括静态链接库(调用函数)的生成和调用实例。-VC examples of static-link library procedures, including the static-link library (call function) example of the generation and call.
VC-STATIC-CLASS
- VC静态链接库的实例程序,包括静态链接库(调用类)的生成和调用实例。-VC examples of static-link library procedures, including the static-link library (call type) the generation and call examples.
dll_programing
- 关于动态链接库编程方面的书籍,也有静态链接库的讲解,对于从事WINDOWS编程的朋友来说非常有帮助-Programming on the dynamic link library books, but also on the static link library, for programming WINDOWS friends very helpful
static
- 简单实现静态链接库函数调用,进一步认识C语言的魅力-Simple implementation of the static link library function call, to further understand the charm of C language
VC++动态链接库(DLL)编程深入浅出(全)
- 静态链接库与动态链接库都是共享代码的方式,如果采用静 态链接库,则无论你愿不愿意,lib中的指令都被直接包含在最终生成的EXE文 件中了。但是若使用DLL,该DLL不必被包含在最终EXE文件中,EXE文件执行 时可以“动态”地引用和卸载这个与EXE独立的DLL文件。静态链接库和动态链 接库的另外一个区别在于静态链接库中不能再包含其他的动态链接库或者静态 库,而在动态链接库中还可以再包含其他的动态或静态链接库。(Both the