]> Shamusworld >> Repos - thunder/blob - src/screen.h
3d431d90d4454120d6e47a3d6e20b8d2cc4688b6
[thunder] / src / screen.h
1 //
2 // SCREEN.H
3 //
4 // This sets screen to Mode X so we can use the WHOLE laptop screen
5 // (i.e. 320x240)
6 //
7 // Tweaked by James L. Hammons
8 //
9 // (C) 1997 Underground Software
10
11 #ifndef __SCREEN_H__
12 #define __SCREEN_H__
13
14 #include "types.h"
15
16 void SnapPCX(SDL_Surface *);          // Take a PCX snapshot
17 void BlitChar(SDL_Surface *, BYTE *, BYTE *); // Show NAMCO screen
18 void Sprite(DWORD, WORD, WORD, BYTE, WORD); // Show sprite on the screen
19
20 #endif  // __SCREEN_H__