home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
dvglue10.arc
/
TVWWRITA.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
1KB
|
30 lines
/*================================================*/
/* TVWWRITA.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 "tvapi.h"
/*================================================*/
/* TVwin_writea write attributes only to window */
/* Ralf Brown 4/24/88 */
/*================================================*/
void pascal TVwin_writea(OBJECT win,char *attr,int len)
{
PARMLIST2 p ;
p.num_args = 2 ;
p.arg[0] = (DWORD)(char far *)attr ;
p.arg[1] = (DWORD) len ;
TVsendmsg(SUBFROM_MSG, win?TOS:ME, win, (PARMLIST *)&p) ;
}
/* End of TVWWRITA.C */