home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / mike40c / getmode.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-10-23  |  240 b   |  17 lines

  1. #include <dos.h>
  2.  
  3. get_mode()   /* Check for Monocrome or graphics  */
  4. {
  5.     union REGS REG;
  6.  
  7.     REG.h.ah = 15;
  8.     REG.h.bh = 00;
  9.     REG.h.ch = 0;
  10.     REG.h.cl = 0;
  11.     int86(0x10, ®, ®);
  12.  
  13.     return(REG.h.al);
  14. }
  15.  
  16.  
  17.