00001 #ifndef COMMON_H
00002 #define COMMON_H
00003
00004 #define DEFAULT_FONT_PATH "/home/carm/fonts/courier1.glf"
00005 #define MAX_TOKEN_SIZE 512
00006 #define MAX_PATH_SIZE 4096
00007
00008 #define STRING_BUFFER_SIZE 1024*150
00009 #define STRING_LINE_SIZE 1024
00010
00011 #ifndef TRUE
00012 #define TRUE 1
00013 #endif
00014 #ifndef FALSE
00015 #define FALSE 0
00016 #endif
00017
00018 #define PROJECTM_FILE_EXTENSION ".prjm"
00019 #define MILKDROP_FILE_EXTENSION ".milk"
00020
00021 #define MAX_DOUBLE_SIZE 10000000.0
00022 #define MIN_DOUBLE_SIZE -10000000.0
00023
00024 #define MAX_INT_SIZE 10000000
00025 #define MIN_INT_SIZE -10000000
00026
00027 #define DEFAULT_DOUBLE_IV 0.0
00028 #define DEFAULT_DOUBLE_LB MIN_DOUBLE_SIZE
00029 #define DEFAULT_DOUBLE_UB MAX_DOUBLE_SIZE
00030
00031 #endif