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.

91 lines
2.7KB

  1. /*
  2. Copyright (C) 2004-2008 Grame
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 2.1 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14. */
  15. #ifndef __JackPlatformPlug_WIN32__
  16. #define __JackPlatformPlug_WIN32__
  17. #define jack_server_dir "server"
  18. #define jack_client_dir "client"
  19. #define JACK_DEFAULT_DRIVER "portaudio"
  20. #define JACK_LOCATION "C:/Program Files/Jack"
  21. #ifndef ADDON_DIR
  22. #define ADDON_DIR "jack"
  23. #endif
  24. namespace Jack
  25. {
  26. struct JackRequest;
  27. struct JackResult;
  28. class JackWinMutex;
  29. class JackWinThread;
  30. class JackWinSemaphore;
  31. class JackWinProcessSync;
  32. class JackWinNamedPipeServerChannel;
  33. class JackWinNamedPipeClientChannel;
  34. class JackWinNamedPipeServerNotifyChannel;
  35. class JackWinNamedPipeNotifyChannel;
  36. class JackWinNamedPipe;
  37. class JackNetWinSocket;
  38. }
  39. /* __JackPlatformMutex__ */
  40. #include "JackWinMutex.h"
  41. namespace Jack {typedef JackWinMutex JackMutex; }
  42. /* __JackPlatformThread__ */
  43. #include "JackWinThread.h"
  44. namespace Jack { typedef JackWinThread JackThread; }
  45. /* __JackPlatformSynchro__ client activation */
  46. #include "JackWinSemaphore.h"
  47. namespace Jack { typedef JackWinSemaphore JackSynchro; }
  48. /* __JackPlatformChannelTransaction__ */
  49. #include "JackWinNamedPipe.h"
  50. namespace Jack { typedef JackWinNamedPipe JackChannelTransaction; }
  51. /* __JackPlatformProcessSync__ */
  52. #include "JackWinProcessSync.h"
  53. namespace Jack { typedef JackWinProcessSync JackProcessSync; }
  54. /* __JackPlatformServerChannel__ */
  55. #include "JackWinNamedPipeServerChannel.h"
  56. namespace Jack { typedef JackWinNamedPipeServerChannel JackServerChannel; }
  57. /* __JackPlatformClientChannel__ */
  58. #include "JackWinNamedPipeClientChannel.h"
  59. namespace Jack { typedef JackWinNamedPipeClientChannel JackClientChannel; }
  60. /* __JackPlatformServerNotifyChannel__ */
  61. #include "JackWinNamedPipeServerNotifyChannel.h"
  62. namespace Jack { typedef JackWinNamedPipeServerNotifyChannel JackServerNotifyChannel; }
  63. /* __JackPlatformNotifyChannel__ */
  64. #include "JackWinNamedPipeNotifyChannel.h"
  65. namespace Jack { typedef JackWinNamedPipeNotifyChannel JackNotifyChannel; }
  66. /* __JackPlatformNetSocket__ */
  67. #include "JackNetWinSocket.h"
  68. namespace Jack { typedef JackNetWinSocket JackNetSocket; }
  69. #endif