jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1KB

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