X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fimage.h;h=0bc0b4b3a2255c0fe6566599281cebdf7a728ead;hb=7b47ce7ba0f673f0de5130daf5726104d0b38902;hp=2b3af63d7723c61060309e2e546796d93b0b66fd;hpb=322297d68005c08b35e7c309a841553b73259a9c;p=rocksndiamonds.git diff --git a/src/libgame/image.h b/src/libgame/image.h index 2b3af63d..0bc0b4b3 100644 --- a/src/libgame/image.h +++ b/src/libgame/image.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 * @@ -50,7 +50,8 @@ typedef struct unsigned int width; /* width of image in pixels */ unsigned int height; /* height of image in pixels */ unsigned int depth; /* depth of image in bits if IRGB type */ - unsigned int bytes_per_row; /* ((depth + 7) / 8) bytes * width */ + unsigned int bytes_per_pixel;/* (depth + 7) / 8 */ + unsigned int bytes_per_row; /* width * bytes_per_pixel */ byte *data; /* image data */ } Image; @@ -70,4 +71,14 @@ int Read_PCX_to_Pixmap(Display *, Window, GC, char *, Pixmap *, Pixmap *); #endif /* TARGET_X11 */ + +struct FileInfo *getCurrentImageList(); +Bitmap *getBitmapFromImageID(int); +char *getTokenFromImageID(int); +char *getImageConfigFilename(); +void InitImageList(struct ConfigInfo *, int, struct ConfigInfo *, + struct ConfigInfo *, struct ConfigInfo *); +void ReloadCustomImages(); +void FreeAllImages(); + #endif /* IMAGE_H */