]> git.sesse.net Git - vlc/blob - modules/visualization/galaktos/common.h
Removes trailing spaces. Removes tabs.
[vlc] / modules / visualization / galaktos / common.h
1 #ifndef COMMON_H
2 #define COMMON_H
3
4 #define DEFAULT_FONT_PATH "/home/carm/fonts/courier1.glf"
5 #define MAX_TOKEN_SIZE 512
6 #define MAX_PATH_SIZE 4096
7
8 #define STRING_BUFFER_SIZE 1024*150
9 #define STRING_LINE_SIZE 1024
10
11 #ifndef TRUE
12 #define TRUE 1
13 #endif
14 #ifndef FALSE
15 #define FALSE 0
16 #endif
17
18 #define PROJECTM_FILE_EXTENSION ".prjm"
19 #define MILKDROP_FILE_EXTENSION ".milk"
20
21 #define MAX_DOUBLE_SIZE  10000000.0
22 #define MIN_DOUBLE_SIZE -10000000.0
23
24 #define MAX_INT_SIZE  10000000
25 #define MIN_INT_SIZE -10000000
26
27 #define DEFAULT_DOUBLE_IV 0.0 /* default double initial value */
28 #define DEFAULT_DOUBLE_LB MIN_DOUBLE_SIZE /* default double lower bound */
29 #define DEFAULT_DOUBLE_UB MAX_DOUBLE_SIZE /* default double upper bound */
30
31 #endif