File: driver.h

package info (click to toggle)
muroard 0.1.0-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 356 kB
  • ctags: 307
  • sloc: ansic: 2,017; sh: 340; makefile: 83
file content (44 lines) | stat: -rw-r--r-- 1,292 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//driver.h:

/*
 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010
 *
 *  This file is part of RoarD,
 *  a sound server daemon for using the RoarAudio protocol.
 *  See README for details.
 *
 *  This file is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 3
 *  or (at your option) any later version as published by
 *  the Free Software Foundation.
 *
 *  RoarAudio is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this software; see the file COPYING.  If not, write to
 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301, USA.
 *
 */

#ifndef _MUROARD_DRIVER_H_
#define _MUROARD_DRIVER_H_

#define DRIVER_NONE        0
#define DRIVER_MUROAR      1
#define DRIVER_ESD         2
#define DRIVER_LIBAO       3
#define DRIVER_OSS         4
#define DRIVER_WMM         5
#define DRIVER_SNDIO       6

int driver_init(char * dev);
int driver_free(void);
int driver_write(int16_t * data);

#endif

//ll