LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);窗口过程都用CALLBACK,但它在windef.h中定义如下:
#define CALLBACK    PASCAL
#define CALLBACK    __stdcall我想PASCAL __stdcall 应该是规定参数的传递方式 和 由谁来清栈,这个CALLBACK是不是我们通常所说的回调函数呢?回调函数又是什么意思呢? MSDN我也看得不太明白
-------------------------
callback
The [callback] attribute declares a static callback function that exists on the client side of the distributed application. Callback functions provide a way for the server to execute code on the client.
[callback [ , function-attr-list] ] type-specifier [ptr-declarator] function-name(
        [ [attribute-list] ] type-specifier [declarator]
        , ...);
怎么又与分布式应用程序,与服务器客户机有关呢? 前者大写CALLBACK,后者小写callback,我想应该不是一回事,他们分别是什么,头都晕了,请大家梆帮忙,只有19分了。谢谢!