关于PeekMessage无法收到WM_QUIT消息

应用程序关闭窗口,但进程还在。

调试后发现WindowProc中

	case WM_DESTROY:
		PostQuitMessage(0);
		break;


PostQuitMessage(0);后消息队列没有收到WM_QUIT。

 

原先错误的消息处理如下

 

	while (true)
	{
		if (PeekMessage(&msg, hWnd, 0, 0, PM_REMOVE))
		{
			if (msg.message == WM_QUIT)
				break;

			TranslateMessage(&msg);
			DispatchMessage(&msg);
		}
		else
		{
			\\Do something else 
		}
	}

问题出在PeekMessage的调用上,PeekMessage的原型如下

BOOL WINAPI PeekMessage(
  __out     LPMSG lpMsg,
  __in_opt  HWND hWnd,
  __in      UINT wMsgFilterMin,
  __in      UINT wMsgFilterMax,
  __in      UINT wRemoveMsg
);

第二个参数 HWND hWnd , MSDN给的解释如下

hWnd [in, optional] 
Type: HWND
 
A handle to the window whose messages are to be retrieved. The window must belong to the current thread.
 
If hWnd is NULL, PeekMessage retrieves messages for any window that belongs to the current thread, and any messages on the current thread's message queue whose hwnd value is NULL (see the MSG structure). Therefore if hWnd is NULL, both window messages and thread messages are processed.
 
If hWnd is -1, PeekMessage retrieves only messages on the current thread's message queue whose hwnd value is NULL, that is, thread messages as posted by PostMessage (when the hWnd parameter is NULL) or PostThreadMessage.


意思是如果这个参数是窗口句柄,获取的是这个窗口的消息,前提是这个窗口属于当前线程。如果hWnd 是 NULL 那么PeekMessage获取所有属于当前线程的消息,包括窗口消息和线程消息(hwnd 为NULL)

如果 hWnd 是 -1, PeekMessage 仅获取hwnd为NULL的线程消息(PostMessage时hWnd参数为NULL的消息)或者PostThreadMessage发送的消息。

 

错误的代码仅处理的窗口消息,hwnd为NULL的消息没有处理,所以也就收不到WM_QUIT消息。更正为

PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)

后问题就自然解决了。 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值