home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
hidecur.cc
< prev
next >
Wrap
Text File
|
1987-09-28
|
199b
|
11 lines
#include <dos.h>
hide_cur()
/* Turn the cursor off */
{
union REGS inregs;
inregs.h.ah=1;
inregs.h.cl=7;
inregs.h.ch=0x26;
int86(0x10,&inregs,&inregs);
}