X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=cdaudio.h;h=eefb0c985dc414d1ffcd4faf7e870a7fb8a6be57;hb=81d669d017e7e58c358335859c1ec357255a62af;hp=09c0d3002a3aa1b71a514837f4f01ba772d05c35;hpb=0256e57e16a302ad45090618b8d6eb5930788809;p=xonotic%2Fdarkplaces.git diff --git a/cdaudio.h b/cdaudio.h index 09c0d300..eefb0c98 100644 --- a/cdaudio.h +++ b/cdaudio.h @@ -8,7 +8,7 @@ of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -18,11 +18,21 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +extern qboolean cdValid; +extern qboolean cdPlaying; +extern qboolean cdPlayLooping; +extern qbyte cdPlayTrack; + +extern cvar_t cdaudioinitialized; + int CDAudio_Init(void); +void CDAudio_Open(void); +void CDAudio_Close(void); void CDAudio_Play(qbyte track, qboolean looping); void CDAudio_Stop(void); void CDAudio_Pause(void); void CDAudio_Resume(void); +int CDAudio_Startup(void); void CDAudio_Shutdown(void); void CDAudio_Update(void);