X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsdl.h;h=4b4f34d31beb0c37dbe7b5afffcba920f831a81e;hb=29fc833ae1b5e46a429a9fa82098e8ad94f6f400;hp=543e90ab89965ab304b6a94796810bffbf7d42c2;hpb=fe158e864d3fa4b0221e9c88d8dfff0157051396;p=rocksndiamonds.git diff --git a/src/libgame/sdl.h b/src/libgame/sdl.h index 543e90ab..4b4f34d3 100644 --- a/src/libgame/sdl.h +++ b/src/libgame/sdl.h @@ -1,7 +1,7 @@ /*********************************************************** * Artsoft Retro-Game Library * *----------------------------------------------------------* -* (c) 1994-2001 Artsoft Entertainment * +* (c) 1994-2002 Artsoft Entertainment * * Holger Schemel * * Detmolder Strasse 189 * * 33604 Bielefeld * @@ -61,6 +61,8 @@ typedef int Colormap; struct SDLSurfaceInfo { char *source_filename; + + int width, height; SDL_Surface *surface; SDL_Surface *surface_masked; GC gc; @@ -312,6 +314,10 @@ struct XY #define KSYM_F23 KSYM_UNDEFINED #define KSYM_F24 KSYM_UNDEFINED +#define KSYM_FKEY_FIRST KSYM_F1 +#define KSYM_FKEY_LAST KSYM_F15 +#define KSYM_NUM_FKEYS (KSYM_FKEY_LAST - KSYM_FKEY_FIRST + 1) + /* SDL function definitions */ @@ -324,6 +330,8 @@ inline void SDLDrawSimpleLine(Bitmap *, int, int, int, int, unsigned int); inline void SDLDrawLine(Bitmap *, int, int, int, int, Uint32); inline Pixel SDLGetPixel(Bitmap *, int, int); +void SDLZoomBitmap(Bitmap *, Bitmap *); + Bitmap *SDLLoadImage(char *); inline void SDLOpenAudio(void);