#define BM_MAX_SIZE 4194304UL
/* Bitmap type */
-typedef enum BitmapType BitmapType;
enum BitmapType {
bmUnknown,
bmMonochrome,
bmRGB,
bmRGBA
};
+typedef enum BitmapType BitmapType;
/* Bitmap structure */
typedef struct Bitmap Bitmap;
-typedef enum InputFormat InputFormat;
enum InputFormat {
ifAuto = -1, /* Auto detect */
ifPCX, /* PCX */
ifCount /* Number of actual input formats w/o ifAuto*/
};
+typedef enum InputFormat InputFormat;
# ------------------------------------------------------------------------------
# All OBJ files
-OBJS = error.obj \
- main.obj
+OBJS = asm.obj \
+ bin.obj \
+ bitmap.obj \
+ color.obj \
+ error.obj \
+ fileio.obj \
+ input.obj \
+ main.obj \
+ palette.obj \
+ pcx.obj
LIBS = ../common/common.lib