common.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:1k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. #ifndef COMMON_H
  2. #define COMMON_H
  3. #define DEFAULT_FONT_PATH "/home/carm/fonts/courier1.glf"
  4. #define MAX_TOKEN_SIZE 512
  5. #define MAX_PATH_SIZE 4096
  6. #define STRING_BUFFER_SIZE 1024*150
  7. #define STRING_LINE_SIZE 1024
  8. #ifndef TRUE
  9. #define TRUE 1
  10. #endif
  11. #ifndef FALSE
  12. #define FALSE 0
  13. #endif 
  14. #define PROJECTM_FILE_EXTENSION ".prjm"
  15. #define MILKDROP_FILE_EXTENSION ".milk"
  16. #define MAX_DOUBLE_SIZE  10000000.0
  17. #define MIN_DOUBLE_SIZE -10000000.0
  18. #define MAX_INT_SIZE  10000000
  19. #define MIN_INT_SIZE -10000000
  20. #define DEFAULT_DOUBLE_IV 0.0 /* default double initial value */
  21. #define DEFAULT_DOUBLE_LB MIN_DOUBLE_SIZE /* default double lower bound */
  22. #define DEFAULT_DOUBLE_UB MAX_DOUBLE_SIZE /* default double upper bound */
  23. #endif