1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
3 * Wine Driver for jack Sound Server
4 * http://jackit.sourceforge.net
6 * Copyright 2002 Chris Morgan
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
35 #include "wine/library.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(jack
);
42 void *jackhandle
= NULL
;
44 /**************************************************************************
45 * JACK_drvLoad [internal]
47 static LRESULT
JACK_drvLoad(void)
51 /* dynamically load the jack library if not already loaded */
52 jackhandle
= wine_dlopen(SONAME_LIBJACK
, RTLD_NOW
, NULL
, 0);
53 TRACE("SONAME_LIBJACK == %s\n", SONAME_LIBJACK
);
54 TRACE("jackhandle == %p\n", jackhandle
);
57 FIXME("error loading the jack library %s, please install this library to use jack\n",
65 /**************************************************************************
66 * JACK_drvFree [internal]
68 /* unload the jack library on driver free */
69 static LRESULT
JACK_drvFree(void)
75 TRACE("calling wine_dlclose() on jackhandle\n");
76 wine_dlclose(jackhandle
, NULL
, 0);
83 #endif /* #ifdef SONAME_LIBJACK */
86 /**************************************************************************
87 * DriverProc (WINEJACK.1)
89 LRESULT CALLBACK
JACK_DriverProc(DWORD_PTR dwDevID
, HDRVR hDriv
, UINT wMsg
,
90 LPARAM dwParam1
, LPARAM dwParam2
)
92 TRACE("(%08lX, %p, %s (%08X), %08lX, %08lX)\n",
93 dwDevID
, hDriv
, wMsg
== DRV_LOAD
? "DRV_LOAD" :
94 wMsg
== DRV_FREE
? "DRV_FREE" :
95 wMsg
== DRV_OPEN
? "DRV_OPEN" :
96 wMsg
== DRV_CLOSE
? "DRV_CLOSE" :
97 wMsg
== DRV_ENABLE
? "DRV_ENABLE" :
98 wMsg
== DRV_DISABLE
? "DRV_DISABLE" :
99 wMsg
== DRV_QUERYCONFIGURE
? "DRV_QUERYCONFIGURE" :
100 wMsg
== DRV_CONFIGURE
? "DRV_CONFIGURE" :
101 wMsg
== DRV_INSTALL
? "DRV_INSTALL" :
102 wMsg
== DRV_REMOVE
? "DRV_REMOVE" : "UNKNOWN",
103 wMsg
, dwParam1
, dwParam2
);
106 #ifdef SONAME_LIBJACK
107 case DRV_LOAD
: return JACK_drvLoad();
108 case DRV_FREE
: return JACK_drvFree();
115 case DRV_QUERYCONFIGURE
:
117 case DRV_CONFIGURE
: MessageBoxA(0, "jack audio driver!", "jack driver", MB_OK
); return 1;