blob: 461745b359678d368b708efab51d11cb290f97a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef GUARD_SND_LOCKCHANNEL_H
#define GUARD_SND_LOCKCHANNEL_H
#include "nitro/types.h"
void SND_StopUnlockedChannel(u32 channelMask, u32 weak);
void SND_LockChannel(u32 channelMask, u32 weak);
void SND_UnlockChannel(u32 channelMask, u32 weak);
u32 SND_GetLockedChannel(u32 weak);
// TODO remove these externs if lockChannel is merged with exChannel
extern u32 sLockedChannelMask;
extern u32 sWeakLockedChannelMask;
#endif //GUARD_SND_LOCKCHANNEL_H
|