BPicture: Fix archive constructor.
[haiku.git] / src / add-ons / kernel / drivers / audio / echo / generic / CDarlaDspCommObject.h
blobd836499fcc12a7917b26a9e19a1d721720967ac8
1 // ****************************************************************************
2 //
3 // CDarlaDspCommObject.H
4 //
5 // Include file for Darla20 DSP interface class.
6 //
7 // ----------------------------------------------------------------------------
8 //
9 // This file is part of Echo Digital Audio's generic driver library.
10 // Copyright Echo Digital Audio Corporation (c) 1998 - 2005
11 // All rights reserved
12 // www.echoaudio.com
14 // This library is free software; you can redistribute it and/or
15 // modify it under the terms of the GNU Lesser General Public
16 // License as published by the Free Software Foundation; either
17 // version 2.1 of the License, or (at your option) any later version.
19 // This library is distributed in the hope that it will be useful,
20 // but WITHOUT ANY WARRANTY; without even the implied warranty of
21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 // Lesser General Public License for more details.
24 // You should have received a copy of the GNU Lesser General Public
25 // License along with this library; if not, write to the Free Software
26 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 // ****************************************************************************
30 #ifndef _DARLADSPCOMMOBJECT_
31 #define _DARLADSPCOMMOBJECT_
33 #include "CGdDspCommObject.h"
36 class CDarlaDspCommObject : public CGdDspCommObject
38 public:
40 // Construction/destruction
42 CDarlaDspCommObject( PDWORD pdwRegBase, PCOsSupport pOsSupport );
43 virtual ~CDarlaDspCommObject();
45 // Card information
47 virtual WORD GetCardType()
48 { return DARLA; }
51 // Set input clock
53 virtual ECHOSTATUS SetInputClock(WORD wClock)
55 return ECHOSTATUS_CLOCK_NOT_SUPPORTED;
57 protected:
59 }; // class CDarlaDspCommObject
61 typedef CDarlaDspCommObject * PCDarlaDspCommObject;
63 #endif
65 // **** DarlaDspCommObject.h ****