/* ts.h - timer services header file */
#ifndef __TS_H
#define __TS_H
#ifndef __LARGE__
#error Must use Large memory model for the timer services.
#endif
#ifdef __cplusplus
extern "C" {
#endif
void TSInit(void);
void TSDone(void);
void TSSetRate(int Speed);
void TSSetRoutine(void (*Rout)());
void TSRestoreTime(void);
#ifdef __cplusplus
}
#endif
#endif