home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
clrbox.cc
< prev
next >
Wrap
Text File
|
1987-09-28
|
431b
|
18 lines
#include <dos.h>
void clrbox(int trow,int tcol,int lrow,int lcol,int wattr)
/* Clear the area inside the box built by the BOX function to the
specified attribute
*/
{
union REGS inregs;
inregs.h.bh = wattr;
inregs.h.cl = tcol+1;
inregs.h.ch = trow+1;
inregs.h.dl = lcol-1;
inregs.h.dh = lrow-1;
inregs.h.al = 0;
inregs.h.ah = 6; /* do the scroll */
int86(0x10,&inregs,&inregs);
}