diff options
Diffstat (limited to 'include/xas')
-rw-r--r-- | include/xas/seq.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/xas/seq.h b/include/xas/seq.h index 86acefc..f7ec322 100644 --- a/include/xas/seq.h +++ b/include/xas/seq.h @@ -50,20 +50,15 @@ struct _xas_seq_event { enum xas_synth_type synth_type; const char *phrase; }; -}; - -typedef struct _xas_seq_event_list_item xas_seq_event_list_item; -struct _xas_seq_event_list_item { - xas_seq_event *ev; - xas_seq_event_list_item *next; + xas_seq_event *next; }; typedef struct _xas_seq { xas_spatial_scene *scene; - xas_seq_event_list_item *first, - *last; + xas_seq_event *first, + *last; size_t buffer_size; } xas_seq; |