home *** CD-ROM | disk | FTP | other *** search
- /*
- * Xbios functions
- *
- * Patrice Mandin
- */
-
- #ifndef __I_XBIOS__
- #define __I_XBIOS__
-
- /* Const values */
-
- #define TT_LOW 0x700 /* 320x480x8 bits */
-
- /* Dynamic functions */
-
- void I_InitGraphics_xbios(void);
- void I_ShutdownGraphics_xbios(void);
-
- void I_SetPalette256_xbios(byte* palette);
-
- void I_VidInit_xbios(void);
-
- void I_VidUpdate_xbios(void);
-
- /* --- C2P conversion --- */
-
- void init_c2p(void);
- void convert_c2p(
- unsigned char *src,
- unsigned char *dest,
- long width, long height,
- long dblligne,
- long linewidth
- );
-
- #endif
-