Jack2  1.9.9
JackDriverInfo.h
1 /*
2 Copyright (C) 2001-2005 Paul Davis
3 Copyright (C) 2004-2008 Grame
4 
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.
9 
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.
14 
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.
18 
19 */
20 
21 #ifndef __JackDriverInfo__
22 #define __JackDriverInfo__
23 
24 #include "driver_interface.h"
25 #include "JackDriver.h"
26 #include "JackSystemDeps.h"
27 
28 typedef Jack::JackDriverClientInterface* (*driverInitialize) (Jack::JackLockedEngine*, Jack::JackSynchro*, const JSList*);
29 
30 class SERVER_EXPORT JackDriverInfo
31 {
32 
33  private:
34 
35  driverInitialize fInitialize;
36  DRIVER_HANDLE fHandle;
38 
39  public:
40 
41  JackDriverInfo():fInitialize(NULL),fHandle(NULL),fBackend(NULL)
42  {}
43  ~JackDriverInfo();
44 
46 
48  {
49  return fBackend;
50  }
51 
52 };
53 
54 #endif
55 
Inter process synchronization using using Mach semaphore.
Locked Engine, access to methods is serialized using a mutex.
The base interface for drivers clients.
Definition: JackDriver.h:122