diff options
Diffstat (limited to 'src/pavucontrol.h')
-rw-r--r-- | src/pavucontrol.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/pavucontrol.h b/src/pavucontrol.h index 2dec8cd..12fe986 100644 --- a/src/pavucontrol.h +++ b/src/pavucontrol.h @@ -34,6 +34,32 @@ #define GLADE_FILE "pavucontrol.glade" #endif +enum SinkInputType { + SINK_INPUT_ALL, + SINK_INPUT_CLIENT, + SINK_INPUT_VIRTUAL +}; + +enum SinkType { + SINK_ALL, + SINK_HARDWARE, + SINK_VIRTUAL, +}; + +enum SourceOutputType { + SOURCE_OUTPUT_ALL, + SOURCE_OUTPUT_CLIENT, + SOURCE_OUTPUT_VIRTUAL +}; + +enum SourceType { + SOURCE_ALL, + SOURCE_NO_MONITOR, + SOURCE_HARDWARE, + SOURCE_VIRTUAL, + SOURCE_MONITOR, +}; + pa_context* get_context(void); void show_error(const char *txt); |