mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-21 06:40:08 +02:00
12 lines
270 B
C
12 lines
270 B
C
/* sliders.h -- support for graphical sliders in Nyquist IDE */
|
|
|
|
/* probably these 3 should be elsewhere */
|
|
int nosc_init();
|
|
int nosc_poll();
|
|
void nosc_finish();
|
|
|
|
#define SLIDERS_MAX 1024
|
|
extern float slider_array[SLIDERS_MAX];
|
|
void set_slider(int index, float value);
|
|
|