// ------------------------------------------------------------ // imageio.h // // Reading writing tiff images // // 12.03.2005, J.Ahrensfeld // ------------------------------------------------------------ #ifndef MTYPES_H #define MTYPES_H // ------------------------------------------------------------ #define COMP_RED 0 #define COMP_GREEN 1 #define COMP_BLUE 2 #define COMP_L 0 #define COMP_A 1 #define COMP_B 2 #define COORD_X 0 #define COORD_Y 1 typedef unsigned int UINT32; typedef signed int INT32; typedef unsigned short UINT16; typedef signed short INT16; typedef unsigned char UINT8; typedef signed char INT8; typedef UINT32 pxl_id_t; typedef int pos_t[2]; // ------------------------------------------------------------ #endif // MTYPES_H