home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
dvglue10.arc
/
TVTSTART.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-08-10
|
923b
|
27 lines
/*================================================*/
/* TVTSTART.C */
/* */
/* (c) Copyright 1988 Ralf Brown */
/* All Rights Reserved */
/* May be freely copied for noncommercial use, */
/* provided that this copyright notice remains */
/* intact and any changes are indicated in the */
/* comment blocks preceding functions */
/*================================================*/
#include "tvapi.h"
/*================================================*/
/* TVtask_start restart a previously stopped task*/
/* Ralf Brown 4/2/88 */
/*================================================*/
void pascal TVtask_start(OBJECT task)
{
_ES = OBJSEG(task) ;
_AX = 0x101E ;
geninterrupt(0x15) ;
}
/* End of TVTSTART.C */