X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpcx.h;fp=src%2Fpcx.h;h=b1fa1c63ec71fa98084e1d7d96db2f702a39e47f;hb=182260bf970d56e056a8c0c580ad61302d21ab0f;hp=0000000000000000000000000000000000000000;hpb=c56ae03b51200429cfa20db7d61cfe907dc2e26e;p=rocksndiamonds.git diff --git a/src/pcx.h b/src/pcx.h new file mode 100644 index 00000000..b1fa1c63 --- /dev/null +++ b/src/pcx.h @@ -0,0 +1,29 @@ +/*********************************************************** +* Rocks'n'Diamonds -- McDuffin Strikes Back! * +*----------------------------------------------------------* +* (c) 1995-98 Artsoft Entertainment * +* Holger Schemel * +* Oststrasse 11a * +* 33604 Bielefeld * +* phone: ++49 +521 290471 * +* email: aeglos@valinor.owl.de * +*----------------------------------------------------------* +* pcx.h * +***********************************************************/ + +#ifndef PCX_H +#define PCX_H + +#include "main.h" +#include "image.h" + +#define PCX_Success 0 +#define PCX_OpenFailed -1 +#define PCX_ReadFailed -2 +#define PCX_FileInvalid -3 +#define PCX_NoMemory -4 +#define PCX_ColorFailed -5 + +Image *Read_PCX_to_Image(char *); + +#endif /* PCX_H */