rnd-19981202-3
[rocksndiamonds.git] / src / pcx.h
diff --git a/src/pcx.h b/src/pcx.h
new file mode 100644 (file)
index 0000000..b1fa1c6
--- /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 */