Merge pull request #23 from jackaudio/device_reservation_fixes
[jack2.git] / windows / JackSystemDeps_os.h
blobb2085fef8f56cd6876b632c8e8f64465be3746e5
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 #ifndef PATH_MAX
27 #define PATH_MAX 512
28 #endif
30 #define UINT32_MAX 4294967295U
32 #define DRIVER_HANDLE HINSTANCE
33 #define LoadDriverModule(name) LoadLibrary((name))
34 #define UnloadDriverModule(handle) (FreeLibrary(((HMODULE)handle)))
35 #define GetDriverProc(handle, name) GetProcAddress(((HMODULE)handle), (name))
37 #define JACK_HANDLE HINSTANCE
38 #define LoadJackModule(name) LoadLibrary((name));
39 #define UnloadJackModule(handle) FreeLibrary((handle));
40 #define GetJackProc(handle, name) GetProcAddress((handle), (name));
42 #ifndef ENOBUFS
43 #define ENOBUFS 55
44 #endif
46 #ifdef _DEBUG
47 #define JACK_DEBUG true
48 #else
49 #define JACK_DEBUG false
50 #endif
52 #if defined(_MSC_VER)
53 #define snprintf _snprintf
54 #endif
56 #endif