Move MIDI common files in server library on OSX.
[jack2.git] / windows / JackSystemDeps_os.h
blobc74830d04042a056d868371da2a24a1fedc38dff
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 __JackSystemDeps_WIN32__
22 #define __JackSystemDeps_WIN32__
24 #include <windows.h>
26 #define UINT32_MAX 4294967295U
28 #define DRIVER_HANDLE HINSTANCE
29 #define LoadDriverModule(name) LoadLibrary((name))
30 #define UnloadDriverModule(handle) (FreeLibrary(((HMODULE)handle)))
31 #define GetDriverProc(handle, name) GetProcAddress(((HMODULE)handle), (name))
33 #define JACK_HANDLE HINSTANCE
34 #define LoadJackModule(name) LoadLibrary((name));
35 #define UnloadJackModule(handle) FreeLibrary((handle));
36 #define GetJackProc(handle, name) GetProcAddress((handle), (name));
38 #define ENOBUFS 55
39 #define JACK_DEBUG false
41 #endif