home *** CD-ROM | disk | FTP | other *** search
-
- /************* TVGA16.H *****************/
- /* The tvga256.bgi support all 256 color mode for TRIDENT TVGA video card
- it include :
- 320 * 200 mode number = 0
- 640 * 400 mode number = 1
- 640 * 480 mode number = 2
- 800 * 600 mode number = 3
- 1024 * 768 mode number = 4
- */
-
- #if defined( _Windows )
- #error BGI graphics not supported under Windows
- #endif
-
- #if !defined(__TVGA256_H)
- #define __TVGA256_H
-
- #define _Cdecl cdecl
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- int huge detectTVGA256(void); /* for autodetection the hardware */
- void TVGA256_driver(void); /* never called directly by user */
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif