home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
dvglue10.arc
/
TVJFREE.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
1KB
|
27 lines
/*=======================================================*/
/* TVJFREE.C */
/* */
/* (c) Copyright 1988 Ralf Brown All Rights Reserved */
/* May be freely copied for noncommercial use, so long */
/* as this copyright notice remains intact, and any */
/* changes are marked in the comment blocks preceding */
/* functions. */
/*=======================================================*/
#include "tvapi.h"
#include "tvstream.h"
/*======================================================*/
/* TVapp_free free an application and its window */
/* Ralf Brown 4/20/88 */
/*======================================================*/
void pascal TVapp_free(OBJECT win)
{
static BYTE free_stream[] = { S_MANAGER(1), MS_FREETASK } ;
TVwin_stream(win,free_stream) ;
}
/* End of TVJFREE.C */