summaryrefslogtreecommitdiff
path: root/sdl.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-08-13 08:18:11 +0000
committerDarkvater <darkvater@openttd.org>2006-08-13 08:18:11 +0000
commitb1b0b26fc8a1fc499b1cbe4d3c51f71079bd34fe (patch)
tree32937c8ff5c499288446de72e7b581207fd3bf34 /sdl.h
parent00aaf8b8f19a59c9c4b80f9f7e6f98ea489448f6 (diff)
downloadopenttd-b1b0b26fc8a1fc499b1cbe4d3c51f71079bd34fe.tar.xz
(svn r5872) - Feature: Add an icon to the SDL openttd executable.
Diffstat (limited to 'sdl.h')
-rw-r--r--sdl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sdl.h b/sdl.h
index 8faa85024..9fe374095 100644
--- a/sdl.h
+++ b/sdl.h
@@ -41,6 +41,11 @@ void SdlClose(uint32 x);
void (SDLCALL *SDL_VideoDriverName)(char *, int);
SDL_Rect **(SDLCALL *SDL_ListModes)(void *, int);
Uint8 *(SDLCALL *SDL_GetKeyState)(int *);
+ SDL_Surface *(SDLCALL *SDL_LoadBMP_RW)(SDL_RWops *, int);
+ SDL_RWops *(SDLCALL *SDL_RWFromFile)(const char *, const char *);
+ int (SDLCALL *SDL_SetColorKey)(SDL_Surface *, Uint32, Uint32);
+ void (SDLCALL *SDL_WM_SetIcon)(SDL_Surface *, Uint8 *);
+ Uint32 (SDLCALL *SDL_MapRGB)(SDL_PixelFormat *, Uint8, Uint8, Uint8);
} SDLProcs;
extern SDLProcs sdl_proc;