Merge pull request #325 from trebmuh/patch-1
[jack2.git] / android / JackControlAPIAndroid.h
blob92694113ca456b32627d3e47abf825d8652628ef
1 /*
2 JACK control API
4 Copyright (C) 2008 Nedko Arnaudov
5 Copyright (C) 2008 Grame
6 Copyright (C) 2013 Samsung Electronics
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.
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.
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.
23 #ifndef __JackControlAPIAndroid__
24 #define __JackControlAPIAndroid__
26 #include "JackCompilerDeps.h"
28 /** opaque type for sigmask object */
29 typedef struct jackctl_sigmask jackctl_sigmask_t;
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
35 SERVER_EXPORT int
36 jackctl_wait_signals_and_return(
37 jackctl_sigmask_t * signals);
39 #ifdef __cplusplus
40 } /* extern "C" */
41 #endif
43 #endif