diff options
author | Darkvater <darkvater@openttd.org> | 2006-08-13 08:18:11 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-08-13 08:18:11 +0000 |
commit | b1b0b26fc8a1fc499b1cbe4d3c51f71079bd34fe (patch) | |
tree | 32937c8ff5c499288446de72e7b581207fd3bf34 /sdl.h | |
parent | 00aaf8b8f19a59c9c4b80f9f7e6f98ea489448f6 (diff) | |
download | openttd-b1b0b26fc8a1fc499b1cbe4d3c51f71079bd34fe.tar.xz |
(svn r5872) - Feature: Add an icon to the SDL openttd executable.
Diffstat (limited to 'sdl.h')
-rw-r--r-- | sdl.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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; |