Delphi TMessage[4] TMsg 类型结构

Delphi TMessage[4] TMsg 类型结构

TMsg对Windows消息中的信息进行编码

//Delphi
type
  TMsg = packed record
    hwnd: HWND;  //消息发送到的窗口的句柄。
    message: UINT;  //消息的标识符(Windows消息代码)。
    wParam: WParaM;  //消息的wParam。
    lParam: LParaM;  //消息的lParam。
    time: DWORD;  //消息发送的时间。
    pt: TPoint;   //发送消息时鼠标光标的位置。
  end;
//C++
typedef struct tagMSG {
    HWND        hwnd;
    UINT        message;
    WParaM      wParam;
    LParaM      lParam;
    DWORD       time;
    POINT       pt;
} MSG;
typedef tagMSG TMsg; 

TMsg类型保存Windows消息的详细信息。这是Windows用来编码消息的结构,与TMessage类型不同,TMessage类型对传递给CLX窗口过程的参数进行编码。

注意:在C++中,TMsg是根据在Winuser.h.中定义的tagMSG结构定义

 

 

 

 

 

创建时间:2022.05.26  更新时间:

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...