blob: a6c518f2baad3e25f193f8be5bc8b69459549891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef RVL_SDK_AXFX_CHORUS_H
#define RVL_SDK_AXFX_CHORUS_H
#include "common.h"
#include "rvl/AXFX/AXFXChorusExp.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct AXFX_CHORUS {
AXFX_CHORUS_EXP exp; // at 0x0
u32 baseDelay; // at 0xA0
u32 variation; // at 0xA4
u32 period; // at 0xA8
} AXFX_CHORUS;
u32 AXFXChorusGetMemSize(const AXFX_CHORUS *fx);
BOOL AXFXChorusInit(AXFX_CHORUS *fx);
BOOL AXFXChorusShutdown(AXFX_CHORUS *fx);
BOOL AXFXChorusSettings(AXFX_CHORUS *fx);
void AXFXChorusCallback(void *chans, void *context);
#ifdef __cplusplus
}
#endif
#endif
|