home *** CD-ROM | disk | FTP | other *** search
- #include "tvapi.h"
-
- /*=======================================================*/
- /* TVtimer_begin set a new TopView timer interval */
- /* John Navas */
- /*=======================================================*/
-
- /* time: 1/100ths of a second from now */
-
- void pascal TVtimer_begin(OBJECT timer, DWORD time)
- {
- PARMLIST1 p;
-
- p.num_args = 1;
- p.arg[0] = time;
- TVsendmsg(ADDTO_MSG,TOS,timer,(PARMLIST *)&p);
- }
-
- /* End of TVIADD.C */
-