home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
desqview
/
dvglue10.arc
/
TVOBJECT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
588b
|
17 lines
#include "tvapi.h"
/*======================================================*/
/* TVobject get a TopView object handle */
/* John Navas */
/* Ralf Brown 6/23/88 rewrote with TVsendmsg1 */
/*======================================================*/
OBJECT pascal TVobject(WORD which)
{
/* OR the specification with 1 to make sure we ask for a return which */
/* does not need an additional parameter on the stack */
return (OBJECT) TVsendmsg1(OBJECT_MSG, which|1, 0) ;
}
/* End of TVOBJECT.C */