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

多媒体

开发平台:

MultiPlatform

  1. #ifndef CUSTOM_SHAPE_H
  2. #define CUSTOM_SHAPE_H
  3. #define CUSTOM_SHAPE_DEBUG 0
  4. #include "expr_types.h"
  5. #include "custom_shape_types.h"
  6. #include "preset_types.h"
  7. void free_custom_shape(custom_shape_t * custom_shape);
  8. custom_shape_t * new_custom_shape(int id);
  9. custom_shape_t * find_custom_shape(int id, preset_t * preset, int create_flag);
  10. void load_unspecified_init_conds_shape(custom_shape_t * custom_shape);
  11. inline void evalCustomShapeInitConditions();
  12. inline custom_shape_t * nextCustomShape();
  13. #endif