2011-09-07 23:06:51 +02:00
|
|
|
//
|
|
|
|
// LeoCAD configuration
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef _CONFIG_H_
|
|
|
|
#define _CONFIG_H_
|
|
|
|
|
|
|
|
#define LC_VERSION_MAJOR 0
|
2012-08-13 02:38:57 +02:00
|
|
|
#define LC_VERSION_MINOR 78
|
2012-06-29 23:47:22 +02:00
|
|
|
#define LC_VERSION_PATCH 0
|
2011-09-07 23:06:51 +02:00
|
|
|
#define LC_VERSION_OSNAME "Windows"
|
2012-08-13 02:38:57 +02:00
|
|
|
#define LC_VERSION_TEXT "0.78"
|
2011-09-07 23:06:51 +02:00
|
|
|
#define LC_VERSION_TAG ""
|
|
|
|
#define LC_INSTALL_PREFIX "C:\\leocad"
|
|
|
|
#define LC_POINTER_TO_INT(p) ((lcint32)(p))
|
|
|
|
|
|
|
|
typedef signed char lcint8;
|
|
|
|
typedef unsigned char lcuint8;
|
|
|
|
typedef signed short lcint16;
|
|
|
|
typedef unsigned short lcuint16;
|
|
|
|
typedef signed int lcint32;
|
|
|
|
typedef unsigned int lcuint32;
|
|
|
|
|
|
|
|
#define LC_LITTLE_ENDIAN
|
|
|
|
#define LCUINT16(val) val
|
|
|
|
#define LCUINT32(val) val
|
|
|
|
#define LCINT16(val) val
|
|
|
|
#define LCINT32(val) val
|
|
|
|
#define LCFLOAT(val) val
|
|
|
|
|
2011-09-13 07:38:22 +02:00
|
|
|
#define LC_HAVE_3DSFTK
|
2011-09-07 23:06:51 +02:00
|
|
|
#define LC_HAVE_JPEGLIB
|
|
|
|
#define LC_HAVE_ZLIB
|
|
|
|
#define LC_HAVE_PNGLIB
|
|
|
|
|
|
|
|
#endif // _CONFIG_H_
|