tiyan 发表于 2018-6-26 09:07:43

windows编程入门之消息

  typedef struct tagMSG {
  HWND hwnd; // window handle message is intended for
  UINT message;
  WPARAM wParam;
  LPARAM lParam;
  DWORD time; // the time the message was put in the queue
  POINT pt; // the location of the mouse cursor when the
  // message was put in the queue
  } MSG;
页: [1]
查看完整版本: windows编程入门之消息