GetMessage()函数使用时的注意

简介: GetMessage()函数使用时的注意

      GetMessage()函数是一个很常见的函数,如果使用SDK写过Windows程序的话,那么就更不陌生,该函数的返回值值得注意的地方,因为最近在看Win32汇编的书,书中提到了这个函数。但是发现对于该函数的判断也是不对的。把MSDN上对该函数的返回值的介绍留在这里吧。MSDN中的内容都是英文的,不过还是比较好理解的。

      以下摘自微软的MSDN:

Return Values
If the function retrieves a message other than WM_QUIT, the return value is nonzero.
If the function retrieves the WM_QUIT message, the return value is zero.
If there is an error, the return value is -1. For example, the function fails if hWnd is an invalid window handle or lpMsg is an invalid pointer. To get extended error information, call GetLastError.
Warning  Because the return value can be nonzero, zero, or -1, avoid code like this:
while (GetMessage( lpMsg, hWnd, 0, 0)) ... 
The possibility of a -1 return value means that such code can lead to fatal application errors. Instead, use code like this:
BOOL bRet;
while( (bRet = GetMessage( &msg, NULL, 0, 0 )) != 0)
{ 
    if (bRet == -1)
    {
        // handle the error and possibly exit
    }
    else
    {
        TranslateMessage(&msg); 
        DispatchMessage(&msg); 
    }
}
相关文章
|
8月前
|
C语言
函数
函数
43 1
|
8月前
|
存储 C语言 Python
函数的前世今生1系列
函数的前世今生1系列
|
8月前
函数(三)
函数(三)
56 0
|
编译器 C语言
C 中的函数
C 中的函数
|
前端开发
纯函数
纯函数
92 0
|
存储 编译器 C语言
C语言知识点之 函数
C语言知识点之 函数
66 0
|
程序员 C语言 C++
函函函函函函函函函函函数——one
函函函函函函函函函函函数——one
97 0
|
编译器 C语言 C++
C++——函数
C++——函数
123 0
C++——函数
|
Serverless
比值函数
比值函数
225 0
memsrt函数的使用及说明
memsrt函数的使用及说明
131 0
memsrt函数的使用及说明

热门文章

最新文章