Move MIDI common files in server library on OSX.
[jack2.git] / windows / JackPlatformPlug_os.h
blobbbafd0c9ef358e64486ef9bc8849fd1147edd3a5
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.
21 #ifndef __JackPlatformPlug_WIN32__
22 #define __JackPlatformPlug_WIN32__
24 #define jack_server_dir "server"
25 #define jack_client_dir "client"
26 #define ADDON_DIR "jack"
28 namespace Jack
30 struct JackRequest;
31 struct JackResult;
33 class JackWinMutex;
34 class JackWinThread;
35 class JackWinSemaphore;
36 class JackWinProcessSync;
37 class JackWinNamedPipeServerChannel;
38 class JackWinNamedPipeClientChannel;
39 class JackWinNamedPipeServerNotifyChannel;
40 class JackWinNamedPipeNotifyChannel;
41 class JackWinNamedPipe;
42 class JackNetWinSocket;
45 /* __JackPlatformMutex__ */
46 #include "JackWinMutex.h"
47 namespace Jack {typedef JackWinMutex JackMutex; }
49 /* __JackPlatformThread__ */
50 #include "JackWinThread.h"
51 namespace Jack { typedef JackWinThread JackThread; }
53 /* __JackPlatformSynchro__ client activation */
54 #include "JackWinSemaphore.h"
55 namespace Jack { typedef JackWinSemaphore JackSynchro; }
57 /* __JackPlatformChannelTransaction__ */
58 #include "JackWinNamedPipe.h"
59 namespace Jack { typedef JackWinNamedPipe JackChannelTransaction; }
61 /* __JackPlatformProcessSync__ */
62 #include "JackWinProcessSync.h"
63 namespace Jack { typedef JackWinProcessSync JackProcessSync; }
65 /* __JackPlatformServerChannel__ */
66 #include "JackWinNamedPipeServerChannel.h"
67 namespace Jack { typedef JackWinNamedPipeServerChannel JackServerChannel; }
69 /* __JackPlatformClientChannel__ */
70 #include "JackWinNamedPipeClientChannel.h"
71 namespace Jack { typedef JackWinNamedPipeClientChannel JackClientChannel; }
73 /* __JackPlatformServerNotifyChannel__ */
74 #include "JackWinNamedPipeServerNotifyChannel.h"
75 namespace Jack { typedef JackWinNamedPipeServerNotifyChannel JackServerNotifyChannel; }
77 /* __JackPlatformNotifyChannel__ */
78 #include "JackWinNamedPipeNotifyChannel.h"
79 namespace Jack { typedef JackWinNamedPipeNotifyChannel JackNotifyChannel; }
81 /* __JackPlatformNetSocket__ */
82 #include "JackNetWinSocket.h"
83 namespace Jack { typedef JackNetWinSocket JackNetSocket; }
85 #endif