摘要: DLL 是 Dynamic Link Library 的缩写,译为“动态链接库”。DLL也是一个被编译过的二进制程序,可以被其他程序调用,但与 exe 不同,DLL不能独立运行,必须由其他程序调用载入内存。DLL 中封装了很多函数,只要知道函数的入口地址,就可以被其他程序调用。Windows API... 阅读全文
posted @ 2014-12-24 08:52 summer-xwq 阅读(222) 评论(0) 推荐(0) 编辑
摘要: fun.c#include int fun1(){ printf("The first function!\n"); return 0;}int fun2(){ printf("The second function!\n"); return 0;}int fun3(){ ... 阅读全文
posted @ 2014-12-24 08:42 summer-xwq 阅读(231) 评论(0) 推荐(0) 编辑