1 #include "i_cd.h"
2 
3 //==========================================================================
4 //
5 // CD_Init
6 //
7 //==========================================================================
8 
CD_Init()9 bool CD_Init ()
10 {
11 	return false;
12 }
13 
CD_Init(int device)14 bool CD_Init (int device)
15 {
16 	return false;
17 }
18 
19 //==========================================================================
20 //
21 // CD_InitID
22 //
23 //==========================================================================
24 
CD_InitID(unsigned int id,int guess)25 bool CD_InitID (unsigned int id, int guess)
26 {
27 	return false;
28 }
29 
30 //==========================================================================
31 //
32 // CD_Close
33 //
34 //==========================================================================
35 
CD_Close()36 void CD_Close ()
37 {
38 }
39 
40 //==========================================================================
41 //
42 // CD_Eject
43 //
44 //==========================================================================
45 
CD_Eject()46 void CD_Eject ()
47 {
48 }
49 
50 //==========================================================================
51 //
52 // CD_UnEject
53 //
54 //==========================================================================
55 
CD_UnEject()56 bool CD_UnEject ()
57 {
58 	return false;
59 }
60 
61 //==========================================================================
62 //
63 // CD_Stop
64 //
65 //==========================================================================
66 
CD_Stop()67 void CD_Stop ()
68 {
69 }
70 
71 //==========================================================================
72 //
73 // CD_Play
74 //
75 //==========================================================================
76 
CD_Play(int track,bool looping)77 bool CD_Play (int track, bool looping)
78 {
79 	return false;
80 }
81 
82 //==========================================================================
83 //
84 // CD_PlayNoWait
85 //
86 //==========================================================================
87 
CD_PlayNoWait(int track,bool looping)88 void CD_PlayNoWait (int track, bool looping)
89 {
90 }
91 
92 //==========================================================================
93 //
94 // CD_PlayCD
95 //
96 //==========================================================================
97 
CD_PlayCD(bool looping)98 bool CD_PlayCD (bool looping)
99 {
100 	return false;
101 }
102 
103 //==========================================================================
104 //
105 // CD_PlayCDNoWait
106 //
107 //==========================================================================
108 
CD_PlayCDNoWait(bool looping)109 void CD_PlayCDNoWait (bool looping)
110 {
111 }
112 
113 //==========================================================================
114 //
115 // CD_Pause
116 //
117 //==========================================================================
118 
CD_Pause()119 void CD_Pause ()
120 {
121 }
122 
123 //==========================================================================
124 //
125 // CD_Resume
126 //
127 //==========================================================================
128 
CD_Resume()129 bool CD_Resume ()
130 {
131 	return false;
132 }
133 
134 //==========================================================================
135 //
136 // CD_GetMode
137 //
138 //==========================================================================
139 
CD_GetMode()140 ECDModes CD_GetMode ()
141 {
142 	return CDMode_Unknown;
143 }
144 
145 //==========================================================================
146 //
147 // CD_CheckTrack
148 //
149 //==========================================================================
150 
CD_CheckTrack(int track)151 bool CD_CheckTrack (int track)
152 {
153 	return false;
154 }
155