source: roaraudio/roard/driver_raw.c @ 757:4e5bfa3538df

Last change on this file since 757:4e5bfa3538df was 668:71ac426690da, checked in by phi, 16 years ago

added license statements

File size: 1.8 KB
Line 
1//driver_raw.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "roard.h"
26
27int driver_raw_open(DRIVER_USERDATA_T * inst, char * device, struct roar_audio_info * info) {
28 int * di = malloc(sizeof(int));
29
30 if ( di == NULL )
31  return -1;
32
33 *inst = (DRIVER_USERDATA_T)di;
34
35 if ( device == NULL ) {
36  free(di);
37  *inst = NULL;
38  return -1;
39 }
40
41 *di = open(device, O_CREAT|O_TRUNC|O_WRONLY, 0644);
42
43 if ( *di == -1 ) {
44  free(di);
45  *inst = NULL;
46  return -1;
47 }
48
49 return 0;
50}
51
52int driver_raw_close(DRIVER_USERDATA_T   inst) {
53 int fh = *(int*)inst;
54
55 free((void*)inst);
56
57 return close(fh);
58}
59
60int driver_raw_pause(DRIVER_USERDATA_T   inst, int newstate) {
61 return -1;
62}
63
64int driver_raw_write(DRIVER_USERDATA_T   inst, char * buf, int len) {
65 return write(*(int*)inst, buf, len);
66}
67
68int driver_raw_read(DRIVER_USERDATA_T   inst, char * buf, int len) {
69 return read(*(int*)inst, buf, len);
70}
71
72int driver_raw_flush(DRIVER_USERDATA_T   inst) {
73 return 0;
74}
75
76//ll
Note: See TracBrowser for help on using the repository browser.