home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* TVWAT.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_gotoxy move the cursor to given pos */
- /* Ralf Brown 6/10/88 */
- /*================================================*/
-
- void pascal TVwin_gotoxy(OBJECT win,int col,int row)
- {
- PARMLIST2 p ;
-
- p.num_args = 2 ;
- p.arg[0] = row ;
- p.arg[1] = col ;
- TVsendmsg(AT_MSG, win?TOS:ME, win, (PARMLIST *)&p) ;
- }
-
- /* End of TVWAT.C */
-