代码说明
#include "windows.h"
#include "stdio.h"
void CALLBACK TimerProc(HWND hWnd, UINT nMsg, UINT nTimerid, DWORD dwTime)
{
printf("%s", "abc");
}
void main()
{
SetTimer(0, 0, 1000, &TimerProc);
MSG msg;
while (GetMessage(&msg, NULL, 0, 0))
{
if (msg.message == WM_TIMER)
{
DispatchMessage(&msg);
}
}
}