home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
desqview
/
dvglue10.arc
/
TVLOCATE.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
1KB
|
30 lines
/*=======================================================*/
/* TVLOCATE.C */
/* */
/* (c) Copyright 1988 Ralf Brown All Rights Reserved */
/* May be freely copied for noncommercial use, so long */
/* as this copyright notice remains intact, and any */
/* changes are marked in the comment blocks preceding */
/* functions. */
/*=======================================================*/
#include "tvapi.h"
/*======================================================*/
/* TVlocate--determine which window occupies a screen */
/* location */
/* Ralf Brown 4/2/88 */
/*======================================================*/
OBJECT pascal TVlocate(OBJECT win,int row,int col)
{
_ES = OBJSEG(win) ;
_BL = row ;
_BH = col ;
_AX = 0x1018 ;
geninterrupt(0x15) ;
return MK_OBJ(_ES) ;
}
/* End of TVLOCATE.C */