home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser-CD 2000 January / LCD_01_2000.iso / games / doom / pmdoom / include / video / xbios.h < prev   
Encoding:
C/C++ Source or Header  |  1999-12-17  |  569 b   |  37 lines

  1. /*
  2.  *    Xbios functions
  3.  *
  4.  *    Patrice Mandin
  5.  */
  6.  
  7. #ifndef __I_XBIOS__
  8. #define __I_XBIOS__
  9.  
  10. /* Const values */
  11.  
  12. #define TT_LOW    0x700    /* 320x480x8 bits */
  13.  
  14. /* Dynamic functions */
  15.  
  16. void I_InitGraphics_xbios(void);
  17. void I_ShutdownGraphics_xbios(void);
  18.  
  19. void I_SetPalette256_xbios(byte* palette);
  20.  
  21. void I_VidInit_xbios(void);
  22.  
  23. void I_VidUpdate_xbios(void);
  24.  
  25. /* --- C2P conversion --- */
  26.  
  27. void init_c2p(void);
  28. void convert_c2p(
  29.     unsigned char *src,
  30.     unsigned char *dest,
  31.     long width, long height,
  32.     long dblligne,
  33.     long linewidth
  34. );
  35.  
  36. #endif
  37.