home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
desqview
/
dvglue10.arc
/
TVWWIDTH.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-08-10
|
961b
|
26 lines
/*================================================*/
/* TVWWIDTH.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_width get width of logical window */
/* Ralf Brown 4/3/88 */
/* Ralf Brown 7/14/88 modified for TVsendmsg1 */
/*================================================*/
int pascal TVwin_width(OBJECT win)
{
return (int) TVsendmsg1(LEN_MSG, win?TOS:ME, win) ;
}
/* End of TVWWIDTH.C */