]> code.delx.au - pulseaudio/blob - polyp/native-common.h
glib mainloop fix
[pulseaudio] / polyp / native-common.h
1 #ifndef foonativecommonhfoo
2 #define foonativecommonhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of polypaudio.
8
9 polypaudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
13
14 polypaudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with polypaudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 enum {
26 PA_COMMAND_ERROR,
27 PA_COMMAND_TIMEOUT, /* pseudo command */
28 PA_COMMAND_REPLY,
29 PA_COMMAND_CREATE_PLAYBACK_STREAM,
30 PA_COMMAND_DELETE_PLAYBACK_STREAM,
31 PA_COMMAND_CREATE_RECORD_STREAM,
32 PA_COMMAND_DELETE_RECORD_STREAM,
33 PA_COMMAND_EXIT,
34 PA_COMMAND_REQUEST,
35 PA_COMMAND_AUTH,
36 PA_COMMAND_SET_NAME,
37 PA_COMMAND_LOOKUP_SINK,
38 PA_COMMAND_LOOKUP_SOURCE,
39 PA_COMMAND_DRAIN_PLAYBACK_STREAM,
40 PA_COMMAND_PLAYBACK_STREAM_KILLED,
41 PA_COMMAND_RECORD_STREAM_KILLED,
42 PA_COMMAND_STAT,
43 PA_COMMAND_GET_PLAYBACK_LATENCY,
44
45 PA_COMMAND_CREATE_UPLOAD_STREAM,
46 PA_COMMAND_DELETE_UPLOAD_STREAM,
47 PA_COMMAND_FINISH_UPLOAD_STREAM,
48 PA_COMMAND_PLAY_SAMPLE,
49 PA_COMMAND_REMOVE_SAMPLE,
50
51 PA_COMMAND_GET_SERVER_INFO,
52
53 PA_COMMAND_GET_SINK_INFO,
54 PA_COMMAND_GET_SINK_INFO_LIST,
55 PA_COMMAND_GET_SOURCE_INFO,
56 PA_COMMAND_GET_SOURCE_INFO_LIST,
57 PA_COMMAND_GET_MODULE_INFO,
58 PA_COMMAND_GET_CLIENT_INFO,
59 PA_COMMAND_GET_SINK_INPUT_INFO,
60 PA_COMMAND_GET_SOURCE_OUTPUT_INFO,
61 PA_COMMAND_GET_SAMPLE_INFO,
62
63 PA_COMMAND_SUBSCRIBE,
64 PA_COMMAND_SUBSCRIBE_EVENT,
65
66 PA_COMMAND_MAX
67 };
68
69 enum {
70 PA_ERROR_OK,
71 PA_ERROR_ACCESS,
72 PA_ERROR_COMMAND,
73 PA_ERROR_INVALID,
74 PA_ERROR_EXIST,
75 PA_ERROR_NOENTITY,
76 PA_ERROR_CONNECTIONREFUSED,
77 PA_ERROR_PROTOCOL,
78 PA_ERROR_TIMEOUT,
79 PA_ERROR_AUTHKEY,
80 PA_ERROR_INTERNAL,
81 PA_ERROR_CONNECTIONTERMINATED,
82 PA_ERROR_KILLED,
83 PA_ERROR_INVALIDSERVER,
84 PA_ERROR_MAX
85 };
86
87 #define PA_NATIVE_COOKIE_LENGTH 256
88 #define PA_NATIVE_COOKIE_FILE ".polypaudio-cookie"
89
90 #endif