无窗口下使用settimer来进行周期性执行某些操作
如何在没有窗口的线程环境使用SetTimer()函数
关键点:消息循环(GetMessage,DispatchMessage)必须和setTImer函数在同一个线程中。
#include <iostream> #include <stdio.h> #include <windows.h> #define IDT_TIMER 100 void CALLBACK TimerProc(HWND hwnd,UINT uMsg,UINT_PTR idEvent,DWORD dwTime) { SYSTEMTIME st; GetLocalTime(&st); printf("%2d:%2d:%2d.%3d hello!\n", st.wHour, st.wMinute, st.wSecond, st.wMilliseconds); } int main(int argc, char* argv[]) { int iret = SetTimer(NULL, IDT_TIMER, 1000, (TIMERPROC)TimerProc); MSG msg; while (1) { GetMessage(&msg, NULL, 0, 0); DispatchMessage(&msg); } return 0; }
一般没有窗口的线程系统是不会给他指定消息队列的。要激发消息队列可以用PostThreadMessage到自己的线程(GetCurrentThreadId())。
或者自己做一个短暂的模式循环,用GetMessage(...)也可以激发消息队列的产生。
参见 :
http://topic.csdn.net/t/20040607/14/3070354.html
http://hi.baidu.com/guangbinw/blog/item/b0818afbc7364760024f560a.html