mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-13 02:55:41 +01:00
34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
|
/*****************************************************************************/
|
||
|
/* Begin #include statements */
|
||
|
|
||
|
/* End #include statements */
|
||
|
/*****************************************************************************/
|
||
|
|
||
|
|
||
|
/*****************************************************************************/
|
||
|
/* Begin function prototypes */
|
||
|
|
||
|
GtkWidget *create_mixer_page(int card_num, int mixer_num);
|
||
|
|
||
|
|
||
|
/* End function prototypes */
|
||
|
/*****************************************************************************/
|
||
|
|
||
|
/*****************************************************************************/
|
||
|
/* Begin #define statements */
|
||
|
|
||
|
/* These types are for the callback data identification */
|
||
|
#define TYPE_EFFECT 0
|
||
|
#define TYPE_SW 1
|
||
|
#define TYPE_MONO_SW 2
|
||
|
#define TYPE_WIDE 3
|
||
|
#define TYPE_VOLUME 4
|
||
|
#define TYPE_CENTER 5
|
||
|
#define TYPE_SPACE 6
|
||
|
#define TYPE_DEPTH 7
|
||
|
#define TYPE_DELAY 8
|
||
|
#define TYPE_FEEDBACK 9
|
||
|
|
||
|
/* End #define statements */
|
||
|
/*****************************************************************************/
|