永航科技:这样的函数定义是什么意思?

来源:百度文库 编辑:查人人中国名人网 时间:2024/05/06 11:29:45
void WINAPI GlobalCallback (int x);
是不是表示 lobalCallback (int x)函数在DLL库中,那DLL库的名字又在哪儿呢?

WINAPI 是windows.h 定义的数据类型,GlobalCallback (int x); 在你自己写的DLL库中.

-----------------------------------------------
WINAPI
Use in place of FAR PASCAL in API declarations. If you are writing a DLL with exported API entry points, you can use this for your own APIs.