custom_shape.h
Upload User: kjfoods
Upload Date: 2020-07-06
Package Size: 29949k
Code Size: 0k
Category:

midi program

Development Platform:

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