Merge branch 'master' into develop
[jack2.git] / common / JackDriverInfo.h
blobf2b862f5aff3ea16f5eb5a492e9d4e085cf682ae
1 /*
2 Copyright (C) 2001-2005 Paul Davis
3 Copyright (C) 2004-2008 Grame
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #ifndef __JackDriverInfo__
22 #define __JackDriverInfo__
24 #include "driver_interface.h"
25 #include "JackDriver.h"
26 #include "JackSystemDeps.h"
28 typedef Jack::JackDriverClientInterface* (*driverInitialize) (Jack::JackLockedEngine*, Jack::JackSynchro*, const JSList*);
30 class SERVER_EXPORT JackDriverInfo
33 private:
35 driverInitialize fInitialize;
36 DRIVER_HANDLE fHandle;
37 Jack::JackDriverClientInterface* fBackend;
39 public:
41 JackDriverInfo():fInitialize(NULL),fHandle(NULL),fBackend(NULL)
43 ~JackDriverInfo();
45 Jack::JackDriverClientInterface* Open(jack_driver_desc_t* driver_desc, Jack::JackLockedEngine*, Jack::JackSynchro*, const JSList*);
47 Jack::JackDriverClientInterface* GetBackend()
49 return fBackend;
54 #endif