]> icculus.org git repositories - btb/d2x.git/blob - arch/dos/cdrom.c
improved automake config. make dist, VPATH builds, ...
[btb/d2x.git] / arch / 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 #include <stdio.h>
4 #include <stdlib.h>
5 #include "pstypes.h"
6 #include "error.h"
7 #include "args.h"
8
9
10 extern int Redbook_playing;
11 static int initialised = 0;
12
13 void RBAExit()
14 {
15 }
16
17 void RBAInit()
18 {
19
20 }
21
22 int RBAEnabled()
23 {
24  return 1;
25 }
26
27 void RBARegisterCD()
28 {
29
30 }
31
32 int RBAPlayTrack(int a)
33 {
34 return 0; 
35 }
36
37 void RBAStop()
38 {
39 }
40
41 void RBASetVolume(int a)
42 {
43
44 }
45
46 void RBAPause()
47 {
48 }
49
50 void RBAResume()
51 {
52 }
53
54 int RBAGetNumberOfTracks()
55 {
56 return 0;
57 }
58
59 int RBAPlayTracks(int tracknum,int something)
60 {
61 return -1;
62 }
63
64 int RBAGetTrackNum()
65 {
66 return -1;
67 }
68
69 int RBAPeekPlayStatus()
70 {
71  return -1;
72 }
73
74 int CD_blast_mixer()
75 {
76  return 0;
77 }