mirror of
https://github.com/leozide/leocad
synced 2025-01-03 23:03:55 +01:00
38 lines
818 B
C
38 lines
818 B
C
//
|
|
// LeoCAD configuration
|
|
//
|
|
// Auto-generated file, DO NOT EDIT
|
|
//
|
|
|
|
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
#define LC_VERSION_MAJOR 0
|
|
#define LC_VERSION_MINOR 75
|
|
#define LC_VERSION_PATCH 2
|
|
#define LC_VERSION_OSNAME "Windows"
|
|
#define LC_VERSION_TEXT "0.75.2"
|
|
#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
|
|
|
|
#define LC_HAVE_3DSFTK
|
|
#define LC_HAVE_JPEGLIB
|
|
#define LC_HAVE_ZLIB
|
|
#define LC_HAVE_PNGLIB
|
|
|
|
#endif // _CONFIG_H_
|