摘要: // The message loop.MSG msg; while( GetMessage( &msg, NULL, 0, 0 ) ){ TranslateMessage( &msg ); DispatchMessage( &msg );}Each time the loop runs, DispatchMessage calls MsgProc.LRESULT WINAPI MsgProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam ){ switch( msg ) { case WM_DEST... 阅读全文
posted @ 2013-07-20 22:32 猜猜我在干什么 阅读(192) 评论(0) 推荐(0) 编辑