X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=cdaudio.h;h=993c4008d2627895a78da5b0f7c0923ca974ce95;hb=018792046effbf5f5743d6ef9569f6c3a2480ae9;hp=e8519cd6d7efe695df40f7c92756628ac0589ff1;hpb=c4ee1bbcc6b2f917465f07269ad09942bbf40849;p=xonotic%2Fdarkplaces.git diff --git a/cdaudio.h b/cdaudio.h index e8519cd6..993c4008 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,10 +18,33 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +typedef struct cl_cdstate_s +{ + qboolean Valid; + qboolean Playing; + qboolean PlayLooping; + unsigned char PlayTrack; +} +cl_cdstate_t; + +//extern cl_cdstate_t cd; + +extern qboolean cdValid; +extern qboolean cdPlaying; +extern qboolean cdPlayLooping; +extern unsigned char cdPlayTrack; + +extern cvar_t cdaudioinitialized; + int CDAudio_Init(void); -void CDAudio_Play(qbyte track, qboolean looping); +void CDAudio_Open(void); +void CDAudio_Close(void); +void CDAudio_Play(unsigned char track, qboolean looping); +void CDAudio_Play_byName (const char *trackname, 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); +