Files
rawTherapee/rtengine/klt/base.h
2013-11-13 20:00:54 +01:00

28 lines
444 B
C

/*********************************************************************
* base.h
*********************************************************************/
#ifndef _BASE_H_
#define _BASE_H_
#ifndef uchar
#define uchar unsigned char
#endif
#ifndef schar
#define schar signed char
#endif
#ifndef uint
#define uint unsigned int
#endif
#ifndef ushort
#define ushort unsigned short
#endif
#ifndef ulong
#define ulong unsigned long
#endif
#endif