mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 00:30:07 +02:00
11 lines
375 B
C
11 lines
375 B
C
/* sndsliders.h -- support for graphical sliders in Nyquist IDE */
|
|
/* Roger Dannenberg
|
|
* Jan 2013
|
|
*/
|
|
|
|
|
|
/* access from Nyquist unit generators to shared data */
|
|
sound_type snd_make_slider(int index, time_type t0, rate_type sr, time_type d);
|
|
sound_type snd_slider(int index, time_type t0, rate_type sr, time_type d);
|
|
/* LISP: (SND-SLIDER FIXNUM ANYNUM ANYNUM ANYNUM) */
|