-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmap.h
executable file
·37 lines (30 loc) · 1.52 KB
/
cmap.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/***********************************************************
* K O U L E S *
*----------------------------------------------------------*
* C1995 JAHUSOFT *
* Jan Hubicka *
* Dukelskych Bojovniku 1944 *
* 390 03 Tabor *
* Czech Republic *
* Phone: 0041-361-32613 *
* eMail: [email protected] *
*----------------------------------------------------------*
* Copyright(c)1995,1996 by Jan Hubicka.See README for *
* Liecnece details. *
*----------------------------------------------------------*
* cmap.h cmap routines for 256color librarys-svgalib style*
************************************************************
* Modified for SDL by DKS - cmap.h didn't originally have *
* a header file *
***********************************************************/
#ifndef CMAP_H
#define CMAP_H
extern int fadedout;
//DKS oopsie, I think the original dev screwed this declaration up:
//extern void setcustompalette ();
extern void setcustompalette (const int, const float);
extern void fade (SDL_Surface*, SDL_Surface*, Uint32, int);
extern void fadeout();
extern void fadein();
extern void fadein1();
#endif