X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsound.h;h=26e882b3e177c5345b97c8a3670046463dd83c9e;hb=4239ba2adc93afb81230b1a4ea42e7eaf68452c6;hp=9e2d2420489697359b5542d304491c7fdb07cf35;hpb=3ff2e8a0b5c27b99a9920bdf5ed82bc41bf40181;p=rocksndiamonds.git diff --git a/src/libgame/sound.h b/src/libgame/sound.h index 9e2d2420..26e882b3 100644 --- a/src/libgame/sound.h +++ b/src/libgame/sound.h @@ -56,6 +56,7 @@ #define SND_CTRL_ALL_SOUNDS (1 << 4) #define SND_CTRL_RELOAD_SOUNDS (1 << 5) #define SND_CTRL_RELOAD_MUSIC (1 << 6) +#define SND_CTRL_EXPIRE_LOOPS (1 << 7) #define SND_CTRL_PLAY_SOUND (SND_CTRL_NONE) #define SND_CTRL_PLAY_LOOP (SND_CTRL_LOOP) @@ -76,6 +77,7 @@ #define IS_RELOADING(x) ((x).state & (SND_CTRL_RELOAD_SOUNDS |\ SND_CTRL_RELOAD_MUSIC)) #define ALL_SOUNDS(x) ((x).state & SND_CTRL_ALL_SOUNDS) +#define SET_EXPIRE_LOOPS(x) ((x).state & SND_CTRL_EXPIRE_LOOPS) #define MAP_NOCONF_MUSIC(x) (-((x) + 1)) #define UNMAP_NOCONF_MUSIC(x) MAP_NOCONF_MUSIC(x) @@ -113,6 +115,7 @@ void StopMusic(void); void StopSound(int); void StopSounds(void); void StopSoundExt(int, int); +void ExpireSoundLoops(boolean); int getSoundListSize(); int getMusicListSize();