WinStopTimer: Difference between revisions
Appearance
mNo edit summary |
m →Returns |
||
Line 9: | Line 9: | ||
=== Returns === | === Returns === | ||
Returns [[BOOL]] with the values of: | Returns [[BOOL]] with the values of: | ||
*[TRUE]] | *[[TRUE]] | ||
*[[FALSE]] | *[[FALSE]] | ||
Revision as of 09:05, 6 January 2017
WinStopTimer
- WinStopTimer(anchorHndl, windowHndl, timerID)
- Stop the timer timerID.
Parameters
- anchorHndl - HAB - input
- The anchor block handle.
- windowHndl - HWND - input
- The window handle.
- timerID - ULONG - input
- The timer identifier.
Returns
Returns BOOL with the values of:
Return from WinGetLastError if WinStopTimer fails:
Define (C/C++)
INCL_WINTIMER or INCL_WIN or INCL_PM
Calling conversion
Example Code
HAB anchorHndl; HWND windowHndl; ULONG timerID; BOOL rc; ... rc = WinStopTimer(anchorHndl, windowHndl, timerID);
Related Functions
Notes
No further messages are received from the timer after WinStopTimer is called. This includes the timer having timed out since the last call to WinGetMsg.