home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
dvglue10.arc
/
TVWPOINT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
948b
|
28 lines
/*================================================*/
/* 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 */