void CALLBACK f(HWND hwnd, UINT uMsg, UINT timerId, DWORD dwTime)
{
printf("Hello World!");
}
int main()
{
MSG msg;
SetTimer(NULL, 0, 1000*60, (TIMERPROC) &f);
// Main message loop:
while(GetMessage(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}