blob: 97801d470469b8bc79ff5bae81322e91f58c6c9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*
* pa-sink-ctl - NCurses based Pulseaudio control client
* Copyright (C) 2011 Benjamin Franzke <benjaminfranzke@googlemail.com>
* Copyright (C) 2010 Jan Klemkow <web2p10@wemelug.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PA_SINK_CTL_H
#define PA_SINK_CTL_H
#include <glib.h>
#include <pulse/pulseaudio.h>
#include <ncurses.h>
#include "config.h"
struct context {
pa_context *context;
pa_operation *op;
gboolean context_ready;
WINDOW *menu_win;
WINDOW *msg_win;
guint resize_source_id;
#ifdef HAVE_SIGNALFD
int signal_fd;
#endif
guint input_source_id;
gint chooser_sink;
gint chooser_input;
guint max_name_len;
GMainLoop *loop;
GList *sink_list;
GList *input_list;
gchar *status;
struct config config;
int return_value;
};
void
quit(struct context *ctx);
#define list_append_struct(list, data) \
do { \
(list) = g_list_append((list), \
g_memdup(&(data), sizeof(data))); \
} while (0)
#define list_foreach(list, el) \
for (GList *__l = (list); __l && ((el) = __l->data); __l = __l->next)
#endif
|