mirror of
https://github.com/zeldaret/ss
synced 2026-05-28 16:31:21 -04:00
04d5527eba
Co-authored-by: muff1nOS <19197077+muff1n1634@users.noreply.github.com>
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#ifndef NW4R_SND_DEBUG_H
|
|
#define NW4R_SND_DEBUG_H
|
|
|
|
/*******************************************************************************
|
|
* types
|
|
*/
|
|
|
|
namespace nw4r { namespace snd
|
|
{
|
|
// [R89JEL]:/bin/RVL/Debug/mainD.elf:.debug::0x2bd7b3
|
|
enum DebugWarningFlag
|
|
{
|
|
DEBUG_WARNING_NOT_ENOUGH_INSTANCE,
|
|
DEBUG_WARNING_NOT_ENOUGH_SEQSOUND,
|
|
DEBUG_WARNING_NOT_ENOUGH_STRMSOUND,
|
|
DEBUG_WARNING_NOT_ENOUGH_WAVESOUND,
|
|
DEBUG_WARNING_NOT_ENOUGH_SEQTRACK,
|
|
DEBUG_WARNING_NOT_ENOUGH_STRMCHANNEL,
|
|
};
|
|
|
|
namespace detail
|
|
{
|
|
// [R89JEL]:/bin/RVL/Debug/mainD.elf:.debug::0x2ec85
|
|
enum DebugSoundType
|
|
{
|
|
DEBUG_SOUND_TYPE_SEQSOUND,
|
|
DEBUG_SOUND_TYPE_STRMSOUND,
|
|
DEBUG_SOUND_TYPE_WAVESOUND,
|
|
};
|
|
} // namespace detail
|
|
}} // namespace nw4r::snd
|
|
|
|
/*******************************************************************************
|
|
* classes and functions
|
|
*/
|
|
|
|
namespace nw4r { namespace snd { namespace detail
|
|
{
|
|
bool Debug_GetWarningFlag(DebugWarningFlag warning);
|
|
DebugWarningFlag Debug_GetDebugWarningFlagFromSoundType(
|
|
DebugSoundType type);
|
|
char const *Debug_GetSoundTypeString(DebugSoundType type);
|
|
}}} // namespace nw4r::snd::detail
|
|
|
|
#endif // NW4R_SND_DEBUG_H
|