home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* TVWWRITC.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_writeca write both chars and attributes */
- /* Ralf Brown 4/24/88 */
- /*================================================*/
-
- void pascal TVwin_writeca(OBJECT win,char *chars,char *attr,int len)
- {
- PARMLIST4 p ;
-
- p.num_args = 4 ;
- p.arg[0] = (DWORD)(char far *)attr ;
- p.arg[1] = (DWORD) len ;
- p.arg[2] = (DWORD)(char far *)chars ;
- p.arg[3] = (DWORD) len ;
- TVsendmsg(ADDTO_MSG, win?TOS:ME, win, (PARMLIST *)&p) ;
- }
-
- /* End of TVWWRITC */
-