Re: [問題] 十分鐘結束的程式???

看板C_and_CPP (C/C++)作者 (好人超)時間16年前 (2009/02/03 13:45), 編輯推噓1(100)
留言1則, 1人參與, 最新討論串2/6 (看更多)
剛剛寫了一個小程式: #include <windows.h> #include <iostream> using namespace std; int stopflag; VOID CALLBACK TimerProc(HWND hwnd, UINT iMsg, UINT TimerID, DWORD Time) { stopflag = 1; } int main() { stopflag = 0; cout << SetTimer(NULL, 0, 100, (TIMERPROC)TimerProc) << endl; while (1) { if (stopflag == 1) break; } cout << "ya" << endl; return 0; } 印出 SetTimer 的回傳值並不是 0,應該是成功了 但是卻一直等不到函式執行。 請問,它的問題出在哪裡呢? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 59.104.63.238

02/03 13:58, , 1F
ON_WM_TIMER() ?
02/03 13:58, 1F
文章代碼(AID): #19XzeAtu (C_and_CPP)
文章代碼(AID): #19XzeAtu (C_and_CPP)