]> icculus.org git repositories - btb/d2x.git/blob - sound/dos_cdrom.c
Fixed build, minor fixes
[btb/d2x.git] / sound / dos_cdrom.c
1 /*
2  * $Source: /cvs/cvsroot/d2x/sound/dos_cdrom.c,v $
3  * $Revision: 1.2 $
4  * $Author: bradleyb $
5  * $Date: 2001-01-29 13:53:28 $
6  *
7  * DPH: This is the file where all the stub functions go.
8  * The aim is to have nothing in here, eventually
9  *
10  * $Log: not supported by cvs2svn $
11  */
12
13 #ifdef HAVE_CONFIG_H
14 #include <conf.h>
15 #endif
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include "pstypes.h"
20 #include "error.h"
21 #include "args.h"
22
23
24 extern int Redbook_playing;
25 static int initialised = 0;
26
27 void RBAExit()
28 {
29 }
30
31 void RBAInit()
32 {
33
34 }
35
36 int RBAEnabled()
37 {
38  return 1;
39 }
40
41 void RBARegisterCD()
42 {
43
44 }
45
46 int RBAPlayTrack(int a)
47 {
48 return 0; 
49 }
50
51 void RBAStop()
52 {
53 }
54
55 void RBASetVolume(int a)
56 {
57
58 }
59
60 void RBAPause()
61 {
62 }
63
64 void RBAResume()
65 {
66 }
67
68 int RBAGetNumberOfTracks()
69 {
70 return 0;
71 }
72
73 int RBAPlayTracks(int tracknum,int something)
74 {
75 return -1;
76 }
77
78 int RBAGetTrackNum()
79 {
80 return -1;
81 }
82
83 int RBAPeekPlayStatus()
84 {
85  return -1;
86 }
87
88 int CD_blast_mixer()
89 {
90  return 0;
91 }