Timer
;일정한 시간 간격으로 반복적인 작업을 하고 싶을 경우 사용. *SetTimer int g_count = 0;void CALLBACK MyTimerFunc(HWND hWnd, UINT nMsg, UINT_PTR nIDEvent, DWORD dwTime){ g_count++; HDC h_dc = GetDC(hWnd); TextOutA(h_dc, 10, 10 + g_count * 20, "Timer Test 1", 12);} // 사용자가 메시지를 처리하는 함수.LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam){ HDC h_screen_dc = ::GetDC(NULL); // 모니터 전체 화면용 DC HDC h_dc..
2019. 9. 24.