发消息方:
...
UINT Msg;
...
Msg=::RegisterWindowMessage("put-guid-here");
...
PostMessage(HWND_BROADCAST,Msg,...,...);
收消息方:
...
UINT Msg;
...
Msg=::RegisterWindowMessage("put-guid-here");
...
ON_REGISTERED_MESSAGE(Msg,OnMsg)//OnMsg为消息Msg的响应函数
...
...
UINT Msg;
...
Msg=::RegisterWindowMessage("put-guid-here");
...
PostMessage(HWND_BROADCAST,Msg,...,...);
收消息方:
...
UINT Msg;
...
Msg=::RegisterWindowMessage("put-guid-here");
...
ON_REGISTERED_MESSAGE(Msg,OnMsg)//OnMsg为消息Msg的响应函数
...