home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
dvglue10.arc
/
TVFCHAR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
1KB
|
29 lines
/*=======================================================*/
/* TVFCHAR.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"
/*=============================================*/
/* TVfld_char fill field with given character */
/* Ralf Brown 4/5/88 */
/*=============================================*/
void pascal TVfld_char(OBJECT win,int field,int c)
{
static BYTE stream[] = { S_WINDOW(3), 0xF1, 0, 0 } ;
stream[5] = field ;
stream[6] = c ;
TVwin_stream(win,stream) ;
}
/* End of TVFCHAR.C */