NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
AXFXReverbHi.h
1#ifndef RVL_SDK_AXFX_REVERB_HI_H
2#define RVL_SDK_AXFX_REVERB_HI_H
3#include <revolution/AXFX/AXFXReverbHiExp.h>
4#include <types.h>
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9typedef struct AXFX_REVERBHI {
10 AXFX_REVERBHI_EXP exp; // at 0x0
11 f32 coloration; // at 0x148
12 f32 mix; // at 0x14C
13 f32 time; // at 0x150
14 f32 damping; // at 0x154
15 f32 preDelay; // at 0x158
16 f32 crosstalk; // at 0x15C
18
19u32 AXFXReverbHiGetMemSize(AXFX_REVERBHI* fx);
20BOOL AXFXReverbHiInit(AXFX_REVERBHI* fx);
21BOOL AXFXReverbHiShutdown(AXFX_REVERBHI* fx);
22BOOL AXFXReverbHiSettings(AXFX_REVERBHI* fx);
23void AXFXReverbHiCallback(void* chans, void* context);
24
25#ifdef __cplusplus
26}
27#endif
28#endif