home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l003 / 1.ddi / BGI256 / CDEMO.ZIP / TVGA256.H < prev   
Encoding:
C/C++ Source or Header  |  1992-11-18  |  734 b   |  32 lines

  1.  
  2. /************* TVGA16.H   *****************/
  3. /* The tvga256.bgi support all 256 color mode for TRIDENT TVGA video card
  4.    it include :
  5.      320 * 200          mode number = 0
  6.      640 * 400          mode number = 1
  7.      640 * 480          mode number = 2
  8.      800 * 600          mode number = 3
  9.      1024 * 768         mode number = 4
  10. */
  11.  
  12. #if defined( _Windows )
  13. #error BGI graphics not supported under Windows
  14. #endif
  15.  
  16. #if !defined(__TVGA256_H)
  17. #define __TVGA256_H
  18.  
  19. #define _Cdecl  cdecl
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24. int huge detectTVGA256(void);  /* for autodetection the hardware */
  25. void TVGA256_driver(void);      /* never called directly by user */
  26.  
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30.  
  31. #endif
  32.