VC 計算時間
今天在找 QueryPerformanceCounter() 的資料找到這篇:
VC中基于 Windows 的精確定時 by 中國科學院光電技術研究所 游志宇
http://www.vckbase.com/document/viewdoc/?id=1301
整理的很好喔,我最喜歡的部分是:
view plaincopy to clipboardprint?
- MSG msg;
- GetMessage(&msg,NULL,0,0);
- TranslateMessage(&msg);
- DispatchMessage(&msg);
MSG msg; GetMessage(&msg,NULL,0,0); TranslateMessage(&msg); DispatchMessage(&msg);
這就是 BCB/Delphi 的 Application::ProcessMessages()