home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beijing Paradise BBS Backup
/
PARADISE.ISO
/
software
/
BBSDOORW
/
DLMST260.ZIP
/
DOSWDW.H
< prev
next >
Wrap
Text File
|
1992-08-09
|
1KB
|
20 lines
/**********************************************************************
* the following code comes from DOSWDW by Edward V. Dong, a Turbo C *
* implementation of EXECWINDOW by Kim Kokkonen, TurboPower Software, *
* which was released to the public domain. *
* *
* don't forget to temporarily comment out the original declaration *
* for setvect() in the DOS.H file *
**********************************************************************/
void _Cdecl setvect (int interruptno, void *isr);
void interrupt doswdw(void); /* DOS window routine */
void far DoDosWdw(int xleft,int ytop,int xrite,int ybottom,int attrib,char *cmd);
void setup21(int NumberOfRows); /* doswdw() setup routine */
void far *oldint21 = NULL; /* to save the old int 21h vector */
void far *newint21 = &doswdw; /* points to doswdw() */
int wdwpos, /* cursor position in window */
wdwupr, /* top right corner */
wdwlwr; /* bottom left corner */
char wdwattr; /* desired attribute */