rename configuration file
[profile/ivi/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 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     PA_COMMAND_MAX
45 };
46
47 enum {
48     PA_ERROR_OK,
49     PA_ERROR_ACCESS,
50     PA_ERROR_COMMAND,
51     PA_ERROR_INVALID,
52     PA_ERROR_EXIST,
53     PA_ERROR_NOENTITY,
54     PA_ERROR_CONNECTIONREFUSED,
55     PA_ERROR_PROTOCOL,
56     PA_ERROR_TIMEOUT,
57     PA_ERROR_AUTHKEY,
58     PA_ERROR_INTERNAL,
59     PA_ERROR_CONNECTIONTERMINATED,
60     PA_ERROR_KILLED,
61     PA_ERROR_INVALIDSERVER,
62     PA_ERROR_MAX
63 };
64
65 #define PA_NATIVE_COOKIE_LENGTH 256
66 #define PA_NATIVE_COOKIE_FILE ".polypaudio-cookie"
67
68 #endif