home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
diverses
/
mike40c
/
getmode.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1986-10-23
|
240 b
|
17 lines
#include <dos.h>
get_mode() /* Check for Monocrome or graphics */
{
union REGS REG;
REG.h.ah = 15;
REG.h.bh = 00;
REG.h.ch = 0;
REG.h.cl = 0;
int86(0x10, ®, ®);
return(REG.h.al);
}