1 /*
2   JACK control API
3 
4   Copyright (C) 2008 Nedko Arnaudov
5   Copyright (C) 2008 Grame
6   Copyright (C) 2013 Samsung Electronics
7 
8   This program is free software; you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation; version 2 of the License.
11 
12   This program is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16 
17   You should have received a copy of the GNU General Public License
18   along with this program; if not, write to the Free Software
19   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 
21 */
22 
23 #ifndef __JackControlAPIAndroid__
24 #define __JackControlAPIAndroid__
25 
26 #include "JackCompilerDeps.h"
27 
28 /** opaque type for sigmask object */
29 typedef struct jackctl_sigmask jackctl_sigmask_t;
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
35 SERVER_EXPORT int
36 jackctl_wait_signals_and_return(
37     jackctl_sigmask_t * signals);
38 
39 #ifdef __cplusplus
40 } /* extern "C" */
41 #endif
42 
43 #endif
44 
45