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))
|
|
|
|
|
2012-09-08 00:46:40 +02:00
|
|
|
typedef __int8 lcint8;
|
|
|
|
typedef unsigned __int8 lcuint8;
|
|
|
|
typedef signed __int16 lcint16;
|
|
|
|
typedef unsigned __int16 lcuint16;
|
|
|
|
typedef signed __int32 lcint32;
|
|
|
|
typedef unsigned __int32 lcuint32;
|
|
|
|
typedef signed __int64 lcint64;
|
|
|
|
typedef unsigned __int64 lcuint64;
|
2011-09-07 23:06:51 +02:00
|
|
|
|
|
|
|
#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_
|