Documentation work
[platform/upstream/pulseaudio.git] / 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 #include "cdecl.h"
26 #include "polyplib-def.h"
27
28 PA_C_DECL_BEGIN
29
30 enum {
31     PA_COMMAND_ERROR,
32     PA_COMMAND_TIMEOUT, /* pseudo command */
33     PA_COMMAND_REPLY,
34     PA_COMMAND_CREATE_PLAYBACK_STREAM,
35     PA_COMMAND_DELETE_PLAYBACK_STREAM,
36     PA_COMMAND_CREATE_RECORD_STREAM,
37     PA_COMMAND_DELETE_RECORD_STREAM,
38     PA_COMMAND_EXIT,
39     PA_COMMAND_REQUEST,
40     PA_COMMAND_AUTH,
41     PA_COMMAND_SET_NAME,
42     PA_COMMAND_LOOKUP_SINK,
43     PA_COMMAND_LOOKUP_SOURCE,
44     PA_COMMAND_DRAIN_PLAYBACK_STREAM,
45     PA_COMMAND_PLAYBACK_STREAM_KILLED,
46     PA_COMMAND_RECORD_STREAM_KILLED,
47     PA_COMMAND_STAT,
48     PA_COMMAND_GET_PLAYBACK_LATENCY,
49     
50     PA_COMMAND_CREATE_UPLOAD_STREAM,
51     PA_COMMAND_DELETE_UPLOAD_STREAM,
52     PA_COMMAND_FINISH_UPLOAD_STREAM,
53     PA_COMMAND_PLAY_SAMPLE,
54     PA_COMMAND_REMOVE_SAMPLE,
55
56     PA_COMMAND_GET_SERVER_INFO,
57     
58     PA_COMMAND_GET_SINK_INFO,
59     PA_COMMAND_GET_SINK_INFO_LIST,
60     PA_COMMAND_GET_SOURCE_INFO,
61     PA_COMMAND_GET_SOURCE_INFO_LIST,
62     PA_COMMAND_GET_MODULE_INFO,
63     PA_COMMAND_GET_MODULE_INFO_LIST,
64     PA_COMMAND_GET_CLIENT_INFO,
65     PA_COMMAND_GET_CLIENT_INFO_LIST,
66     PA_COMMAND_GET_SINK_INPUT_INFO,
67     PA_COMMAND_GET_SINK_INPUT_INFO_LIST,
68     PA_COMMAND_GET_SOURCE_OUTPUT_INFO,
69     PA_COMMAND_GET_SOURCE_OUTPUT_INFO_LIST,
70     PA_COMMAND_GET_SAMPLE_INFO,
71     PA_COMMAND_GET_SAMPLE_INFO_LIST,
72
73     PA_COMMAND_SUBSCRIBE,
74     PA_COMMAND_SUBSCRIBE_EVENT,
75
76     PA_COMMAND_SET_SINK_VOLUME,
77     PA_COMMAND_SET_SINK_INPUT_VOLUME,
78     
79     PA_COMMAND_MAX
80 };
81
82 #define PA_NATIVE_COOKIE_LENGTH 256
83 #define PA_NATIVE_COOKIE_FILE ".polypaudio-cookie"
84
85 PA_C_DECL_END
86
87 #endif