home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* 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 */
-