在该怎么建工程呢??还有文件也怎么建呢??
建这些的步骤是怎么样的啊??可以讲解一下吗??
请各位高手帮帮忙哈!!
在此先谢谢了!
谢谢哈!!
I will explain what you need to do on a windows system.
Step 1: (file name is helloDLL.c)
/**
File: helloDLL.cTo make a .DLL file, compile it with
cl /LD helloDLL.c
The above is for MS complier. You may
complier's command may be different.
*/#include <stdio.h>
__declspec(dllexport) void hello_world()
{
printf(\"Hello, world.\n\");
}
// cl callDll.c#include <windows.h>
int main()
{
HINSTANCE hLib;
void (*funcPointer)(void); // funcPointer can be named anythinghLib = LoadLibrary(\"helloDLL.DLL\");
funcPointer = (void (*)(void))GetProcAddress(hLib, \"hello_world\");
funcPointer();return 0;
}
// compile by command: cl callLib.c helloDll.libvoid hello_world();
int main()
{
hello_world();
return 0;
}
请问你自己动手试了没有?需要找个人手把手教你吗??
别人不是已经告诉了你建立什么工程吗?
建立个工程都不会自己去试,那你怎么学下去?
by 雨中飞燕 QQ:78803110 QQ讨论群:5305909
[url=http://bbs.bc-cn.net/viewthread.php?tid=163571]请大家不要用TC来学习C语言,点击此处查看原因[/url]
[url=http://bbs.bc-cn.net/viewthread.php?tid=162918]C++编写的Windows界面游戏[/url]
[url=http://yzfy.org/]C/C++算法习题(OnlineJudge):[/url] http://yzfy.org/