]> git.sesse.net Git - vlc/blob - modules/visualization/galaktos/custom_shape.h
Fix compilation of galaktos:
[vlc] / modules / visualization / galaktos / custom_shape.h
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
8 void free_custom_shape(custom_shape_t * custom_shape);
9 custom_shape_t * new_custom_shape(int id);
10 custom_shape_t * find_custom_shape(int id, preset_t * preset, int create_flag);
11 void load_unspecified_init_conds_shape(custom_shape_t * custom_shape);
12 void evalCustomShapeInitConditions();
13 custom_shape_t * nextCustomShape();
14 #endif