git-svn-id: http://moon:8086/svn/software/trunk/libsrc/_to_be_added@1 b431acfa-c32f-4a4a-93f1-934dc6c82436
35 lines
803 B
C
Executable File
35 lines
803 B
C
Executable File
// ------------------------------------------------------------
|
|
// 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
|