custom_shape.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:

midi

开发平台:

Unix_Linux

  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. void evalCustomShapeInitConditions();
  12. custom_shape_t * nextCustomShape();
  13. #endif