vc++ 想问下VC++里的MSG是什么意思 是不是message

问题描述:

vc++
想问下VC++里的MSG是什么意思 是不是message
1个回答 分类:综合 2014-12-14

问题解答:

我来补答
是message的意思
MSG是一个结构体
typedef struct tagMSG { // msg
HWND hwnd;
UINT message;
WPARAM wParam;
LPARAM lParam;
DWORD time;
POINT pt;
} MSG;
成员:
hwnd
Handle to the window whose window procedure receives the message.
message
Specifies the message number.
wParam
Specifies additional information about the message.The exact meaning depends on the value of the message member.
lParam
Specifies additional information about the message.The exact meaning depends on the value of the message member.
time
Specifies the time at which the message was posted.
pt
Specifies the cursor position,in screen coordinates,when the message was posted.
QuickInfo
 
 
展开全文阅读
剩余:2000