home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
dvglue10.arc
/
TVWSWRIT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
934b
|
26 lines
/*================================================*/
/* TVWSWRIT.C */
/* */
/* (c) Copyright 1988 Ralf Brown */
/* All Rights Reserved */
/* May be freely copied for noncommercial use as */
/* long as this copyright notice is kept intact */
/* and any changes are indicated in the comment */
/* blocks for the functions */
/*================================================*/
#include <string.h>
#include "tvapi.h"
/*================================================*/
/* TVwin_swrite write a null-terminated string */
/* Ralf Brown 4/3/88 */
/*================================================*/
void pascal TVwin_swrite(OBJECT win,char *string)
{
TVwin_write(win, string, strlen(string)) ;
}
/* End of TVWSWRIT.C */