home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* TVWPOINT.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_point jump mouse to logical cursor pos */
- /* Ralf Brown 6/13/88 */
- /*================================================*/
-
- void pascal TVwin_point(OBJECT win,OBJECT ptr)
- {
- int row, col ;
-
- TVqry_cursor(win,&row,&col) ;
- TVptr_goto(ptr,row,col) ;
- }
-
- /* End of TVWPOINT.C */
-