home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 13 / MA_Cover_13.bin / source / c / ahisrc / device / header.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-22  |  1.3 KB  |  46 lines

  1. /* $Id: header.h,v 4.4 1999/09/22 20:04:02 lcs Exp $ */
  2.  
  3. /*
  4.      AHI - Hardware independent audio subsystem
  5.      Copyright (C) 1996-1999 Martin Blom <martin@blom.org>
  6.      
  7.      This library is free software; you can redistribute it and/or
  8.      modify it under the terms of the GNU Library General Public
  9.      License as published by the Free Software Foundation; either
  10.      version 2 of the License, or (at your option) any later version.
  11.      
  12.      This library is distributed in the hope that it will be useful,
  13.      but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.      Library General Public License for more details.
  16.      
  17.      You should have received a copy of the GNU Library General Public
  18.      License along with this library; if not, write to the
  19.      Free Software Foundation, Inc., 59 Temple Place - Suite 330, Cambridge,
  20.      MA 02139, USA.
  21. */
  22.  
  23. #ifndef _HEADER_H_
  24. #define _HEADER_H_
  25.  
  26. #include <exec/types.h>
  27.  
  28. enum MixBackend_t
  29. {
  30.   MB_NATIVE,
  31.   MB_POWERUP,
  32.   MB_WARPUP
  33. };
  34.  
  35.  
  36. extern const ULONG         DriverVersion;
  37. extern const ULONG         Version;
  38. extern const ULONG         Revision;
  39. extern const char         DevName[];
  40. extern const char         IDString[];
  41.  
  42. extern enum MixBackend_t     MixBackend;
  43. extern void            *PPCObject;
  44.  
  45. #endif /* _HEADER_H_ */
  46.