diff options
Diffstat (limited to 'src/sound.h')
-rw-r--r-- | src/sound.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sound.h b/src/sound.h index 9e0c066..384c775 100644 --- a/src/sound.h +++ b/src/sound.h @@ -9,7 +9,10 @@ /* #define SAMPLE_RATE (44100) */ /* #define FRAMES_PER_BUFFER (256) */ -void init_sound(synth_t * synth, PaStreamCallback *streamCallback); +void init_sound(synth_t * synth, PaStreamCallback *streamCallback, const int device_id); + +char *get_soundcards(); +int get_soundcard_id(const char * name); void destroy_sound(synth_t * synth); |