我一直在看这里的教程:http: //msdn.microsoft.com/en-us/library/bb384843.aspx,但我在某一点上真的很困惑。
MSG msg;
while (GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return (int) msg.wParam;
我不知道他们在那里返回做什么。我知道 return 只适用于一个值。为什么有2个东西?我看过其他教程,他们似乎都在使用return msg.wParam;