home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
desqview
/
dvglue10.arc
/
TVJFORE.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-07-10
|
1KB
|
27 lines
/*=======================================================*/
/* TVJFORE.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"
#include "tvstream.h"
/*======================================================*/
/* TVapp_gofore put application into foreground */
/* Ralf Brown 4/20/88 */
/*======================================================*/
void pascal TVapp_gofore(OBJECT win)
{
static BYTE gofore_stream[] = { S_MANAGER(1), 0xC1 } ;
TVwin_stream(win,gofore_stream) ;
}
/* End of TVJFORE.C */