Quick i need the format of SetTimer()

Started by
0 comments, last by King 23 years, 11 months ago
I need the parameters of SetTimer() i''m not able to get a help file or anything else, this really isn''t urgent just i need it for school i can''t figure it out, i''ve completly forgoten it.
Advertisement
Assuming that you are talking about Windows Programming (this is the only place I know of a call SetTimer() ) it is:

UINT SetTimer(
HWND hWnd, // handle of window for timer messages
UINT nIDEvent, // timer identifier
UINT uElapse, // time-out value
TIMERPROC lpTimerFunc // address of timer procedure
);

All this can also be seen in the header files, so no help files are needed if you are in dire need.
Jacob Marner, M.Sc.Console Programmer, Deadline Games

This topic is closed to new replies.

Advertisement