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

  1. /*
  2.  *    VDI functions
  3.  *
  4.  *    Johan Klockars
  5.  */
  6.  
  7. #ifndef __I_VDI_H_
  8. #define __I_VDI_H_
  9.  
  10. void I_InitGraphics_vdi(void);
  11. void I_ShutdownGraphics_vdi(void);
  12.  
  13. void I_SetPalette256_vdi(byte* palette);
  14.  
  15. void I_VidInit_vdi(void);
  16.  
  17. void I_VidUpdate_vdi(void);
  18. void I_StartTic_vdi(void);
  19.  
  20. void I_SetMainScreen_vdi(void);
  21.  
  22. #endif
  23.