Stops an asynchronous timer.

#define INCL_DOSDATETIME
#include <os2.h>

HTIMER    htimer;  /*  The handle of the timer to stop. */
APIRET    ulrc;    /*  Return Code. */

ulrc = DosStopTimer(htimer);


[Back] [Next]