mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
30 lines
734 B
C
30 lines
734 B
C
#ifndef RVL_SDK_AXFX_DELAY_H
|
|
#define RVL_SDK_AXFX_DELAY_H
|
|
#include "common.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct AXFX_DELAY {
|
|
s32 *line[3]; // at 0x0
|
|
u32 curPos[3]; // at 0xC
|
|
u32 length[3]; // at 0x18
|
|
s32 feedbackGain[3]; // at 0x24
|
|
s32 outGain[3]; // at 0x30
|
|
u32 active; // at 0x3C
|
|
u32 delay[3]; // at 0x40
|
|
u32 feedback[3]; // at 0x4C
|
|
u32 output[3]; // at 0x58
|
|
} AXFX_DELAY;
|
|
|
|
u32 AXFXDelayGetMemSize(const AXFX_DELAY *fx);
|
|
BOOL AXFXDelayInit(AXFX_DELAY *fx);
|
|
BOOL AXFXDelaySettings(AXFX_DELAY *fx);
|
|
void AXFXDelayShutdown(AXFX_DELAY *fx);
|
|
void AXFXDelayCallback(void *chans, void *context);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|