(svn r5872) - Feature: Add an icon to the SDL openttd executable.

This commit is contained in:
Darkvater
2006-08-13 08:18:11 +00:00
parent 00aaf8b8f1
commit b1b0b26fc8
5 changed files with 36 additions and 1 deletions

5
sdl.h
View File

@@ -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;