窗口回调函数

Posted 山上有风景

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了窗口回调函数相关的知识,希望对你有一定的参考价值。

1.传参

/*
WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
和
typedef struct tagMSG {
HWND hwnd;
UINT message;
WPARAM wParam;
LPARAM lParam;
DWORD time;
POINT pt;
} MSG, *PMSG;

前四个参数一致

操作系统直接使用msg前四位作为参数传入窗口回调函数
*/

2.返回值(必须返回,会被作为dispatchmessage函数的返回值)

The return value specifies the result of the message processing and depends on the message sent. 

返回值指定消息处理的结果,并取决于所发送的消息。

     //此处分发消息,调用消息回调函数,
        //同时消息回调函数的返回值作为DIspatchMessage的返回值返回,
        //一般讲这个返回值忽略
        DispatchMessage(&msg);
        /*
        The return value specifies the value returned by the window procedure. Although its meaning depends on the message being dispatched, the return value generally is ignored. 
        返回值指定窗口过程返回的值。尽管它的含义依赖于发送的消息,但是返回值通常被忽略。
        */

所以说在窗口过程函数中的返回值必须要有

 

以上是关于窗口回调函数的主要内容,如果未能解决你的问题,请参考以下文章

满足条件时是不是可以在 GLSL 着色器中回调 C/C++ 函数/代码? [关闭]

窗口回调函数

vb 回调函数 详解

tkinter 按钮回调中的 Lambda 函数

ios block和delegate的区别

OpenGL的GLUT注册回调函数[转]