home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
desqview
/
dvglue10.arc
/
TVPADD.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
997b
|
29 lines
/*================================================*/
/* TVPADD.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"
/*================================================*/
/* TVpointer_setflags set pointer control flags */
/* Ralf Brown 4/22/88 */
/*================================================*/
void pascal TVptr_setflags(OBJECT pointer,WORD flags)
{
PARMLIST1 p ;
p.num_args = 1 ;
p.arg[0] = (DWORD) flags ;
TVsendmsg(ADDTO_MSG, TOS, pointer, (PARMLIST *)&p) ;
}
/* End of TVPADD.C */