mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
20 lines
394 B
C
20 lines
394 B
C
#ifndef __OPENAL_H
|
|
#define __OPENAL_H
|
|
|
|
#include <vorbis/vorbisfile.h>
|
|
|
|
int AL_Init();
|
|
void AL_Shutdown();
|
|
void AL_Update();
|
|
char *AL_ErrorString(int code);
|
|
char *ALC_ErrorString(int code);
|
|
|
|
void AL_Stop();
|
|
int AL_isntALmusic();
|
|
void AL_PlaySong(char *song,int loopflag);
|
|
void AL_Pause();
|
|
void AL_Continue();
|
|
void AL_SetMusicVolume(int volume);
|
|
|
|
int openal_disabled;
|
|
#endif
|