Use jack_client_open instead of old jack_client_new.
[jack2.git] / windows / JackPlatformPlug_os.h
blob536a601825e6f2ea4c1b441ae9069f12231a09ba
1 /*
2 Copyright (C) 2004-2008 Grame
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef __JackPlatformPlug_WIN32__
21 #define __JackPlatformPlug_WIN32__
23 namespace Jack
25 struct JackRequest;
26 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;
40 /* __JackPlatformMutex__ */
41 #include "JackWinMutex.h"
42 namespace Jack {typedef JackWinMutex JackMutex; }
44 /* __JackPlatformThread__ */
45 #include "JackWinThread.h"
46 namespace Jack { typedef JackWinThread JackThread; }
48 /* __JackPlatformSynchro__ client activation */
49 #include "JackWinSemaphore.h"
50 namespace Jack { typedef JackWinSemaphore JackSynchro; }
52 /* __JackPlatformChannelTransaction__ */
53 #include "JackWinNamedPipe.h"
54 namespace Jack { typedef JackWinNamedPipe JackChannelTransaction; }
56 /* __JackPlatformProcessSync__ */
57 #include "JackWinProcessSync.h"
58 namespace Jack { typedef JackWinProcessSync JackProcessSync; }
60 /* __JackPlatformServerChannel__ */
61 #include "JackWinNamedPipeServerChannel.h"
62 namespace Jack { typedef JackWinNamedPipeServerChannel JackServerChannel; }
64 /* __JackPlatformClientChannel__ */
65 #include "JackWinNamedPipeClientChannel.h"
66 namespace Jack { typedef JackWinNamedPipeClientChannel JackClientChannel; }
68 /* __JackPlatformServerNotifyChannel__ */
69 #include "JackWinNamedPipeServerNotifyChannel.h"
70 namespace Jack { typedef JackWinNamedPipeServerNotifyChannel JackServerNotifyChannel; }
72 /* __JackPlatformNotifyChannel__ */
73 #include "JackWinNamedPipeNotifyChannel.h"
74 namespace Jack { typedef JackWinNamedPipeNotifyChannel JackNotifyChannel; }
76 /* __JackPlatformNetSocket__ */
77 #include "JackNetWinSocket.h"
78 namespace Jack { typedef JackNetWinSocket JackNetSocket; }
80 #endif