X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=cdaudio.h;h=09099190e1fa2c4cd0a7b70de94fc8818fcd3595;hb=4d33dcb245a32cf4c44807e8b53e4fccea944633;hp=80e975be23d0a41003f6dc2a6a1309ceba6a8497;hpb=8dcce44300385b12c46d494c06aadcfa35a8bc14;p=xonotic%2Fdarkplaces.git diff --git a/cdaudio.h b/cdaudio.h index 80e975be..09099190 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,17 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "qtypes.h" +#include "cvar.h" + +extern cvar_t cdaudioinitialized; + int CDAudio_Init(void); -void CDAudio_Play(byte track, qboolean looping); +void CDAudio_Play(int track, qbool 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); +float CDAudio_GetPosition(void);