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