shly900928 发表于 2015-4-30 09:24:36

WindowProc最后两个参数的区别

LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
请问WPARAM wParam, LPARAM lParam 这两个参数有什么区别呢,定义都是相同的 : Specifies additional message information. The contents of this parameter depend on the value of the uMsg parameter

laishiba 发表于 2015-4-30 19:57:24

同问

freeparty 发表于 2015-5-1 13:00:57

函数原型:
LRESULT CALLBACK WindowProc (HWND hwnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam);
参数:
hwnd:指向窗口的句柄。
uMsg:指定消息类型。
wParam:指定其余的、消息特定的信息。该参数的内容与UMsg参数值有关。
IParam:指定其余的、消息特定的信息。该参数的内容与uMsg参数值有关。
返回值:返回值就是消息处理结果,它与发送的消息有关。
页: [1]
查看完整版本: WindowProc最后两个参数的区别