diff options
author | Christian Pointner <equinox@spreadspace.org> | 2015-10-12 01:52:03 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2015-10-12 01:52:03 +0200 |
commit | 9e741cbffab978830f2adb85c01ec3c0e24eff44 (patch) | |
tree | 28e7d8ffec2269d6306113bae00b0b9bec23274d /apps/mixer.h | |
parent | switch task insertion works now (diff) |
writing of task buf works now
Diffstat (limited to 'apps/mixer.h')
-rw-r--r-- | apps/mixer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/mixer.h b/apps/mixer.h index 17b3282..ffa3104 100644 --- a/apps/mixer.h +++ b/apps/mixer.h @@ -39,13 +39,14 @@ typedef struct { u_int8_t* buf_; int len_; int write_idx_; - void (*done_cb)(void*); - void* done_data; + void (*done_cb_)(void*); + void* done_data_; } task_t; typedef struct { const char* name_; snd_rawmidi_t* output_; + int pfd_count_; slist_t langs_; slist_t tasks_; } mixer_t; |