VCLTMessage
类提供Message
,WParam
和LParam
成员,但窗口消息有更多成员:
typedef struct tagMSG {
HWND hwnd;
UINT message;
WPARAM wParam;
LPARAM lParam;
DWORD time;
POINT pt;
DWORD lPrivate;
} MSG, *PMSG, *NPMSG, *LPMSG;
hwnd
、time
和pt
成员在哪里lPrivate
?我特别需要这个time
参数。
有没有办法访问TMessage
由(或任何其他获取time
参数的方法)构造的原始消息?
我正在处理我的消息TComponent::WndProc(Winapi::Messages::TMessage &Message)
。