home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / util / iscolor.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  283 b   |  17 lines

  1. /*
  2.  *    iscolor -- return TRUE if a color display system is
  3.  *    in use and is set to one of the text modes
  4.  */
  5.  
  6. #include <local\std.h>
  7. #include <local\video.h>
  8.  
  9. BOOLEAN
  10. iscolor()
  11. {
  12.     getstate();
  13.     if (Vmode != CGA_C40 || Vmode != CGA_C80)
  14.         return TRUE;
  15.     return FALSE;
  16. }
  17.