术语 | windowproc |
释义 | WindowProc 语法: LRESULT CALLBACK WindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam ); WindowProc函数 WindowProc函数是应用程序定义的函数处理邮件发送到一个窗口。是的WndProc类型定义一个指向这个回调函数。 WindowProc是一个应用程序的占位符定义函数的名称。 参数 hwnd [in]的窗口句柄。 uMsg [in]指定的消息。 wParam [in]指定的其他信息资料。这个参数的内容取决于对uMsg参数的值。 lparam的 [in]指定的其他信息资料。这个参数的内容取决于对uMsg参数的值。 返回值 返回值是该邮件的处理结果和发送邮件依赖。 功能信息 在Winuser.h中HeaderDeclared,头文件:winuser.h import libraryNone 最低操作系统Windows 95,Windows NT 3.1 参见 窗口过程概述,CallWindowProc,DefWindowProc,RegisterClass的 ==英文原文==WindowProc Function The WindowProc function is an application-defined function that processes messages sent to a window. The WNDPROC type defines a pointer to this callback function. WindowProc is a placeholder for the application-defined function name. Syntax LRESULT CALLBACK WindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam ); Parameters hwnd [in] Handle to the window. uMsg [in] Specifies the message. wParam [in] Specifies additional message information. The contents of this parameter depend on the value of the uMsg parameter. lParam [in] Specifies additional message information. The contents of this parameter depend on the value of the uMsg parameter. Return Value The return value is the result of the message processing and depends on the message sent. Function Information HeaderDeclared in Winuser.h, include Windows.h Import libraryNone Minimum operating systemsWindows 95, Windows NT 3.1 See Also Window Procedures Overview , CallWindowProc , DefWindowProc , RegisterClass ==原始网址==http://msdn.microsoft.com/en-us/library/ms633573(VS.85).aspx\n |
随便看 |
|
windows api函数参考手册包含2258条windows api函数文档,详细介绍nodejs、java、rust调用windows api的方法技巧,是学习windows api编程的入门中文文档。