diff options
author | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-07-01 02:11:30 +0200 |
---|---|---|
committer | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-08-25 18:03:43 +0200 |
commit | 449da4e1036ef58a11c71f80833443da49c36ff6 (patch) | |
tree | 199ed6be5eb43fe9ff089020038c692c61042225 /arm7/lib/include/SND_lfo.h | |
parent | 45bbe700e7686ab96b7fc805ea2ea6d024f6077f (diff) |
arm7: decompile SND_lfo
Diffstat (limited to 'arm7/lib/include/SND_lfo.h')
-rw-r--r-- | arm7/lib/include/SND_lfo.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arm7/lib/include/SND_lfo.h b/arm7/lib/include/SND_lfo.h new file mode 100644 index 00000000..065e0ed6 --- /dev/null +++ b/arm7/lib/include/SND_lfo.h @@ -0,0 +1,13 @@ +#ifndef GUARD_SND_LFO_H +#define GUARD_SND_LFO_H + +#include "nitro/types.h" + +#include "nitro/SND_main_shared.h" + +void SND_InitLfoParam(struct SNDLfoParam *lfoParam); +void SND_StartLfo(struct SNDLfo *lfo); +void SND_UpdateLfo(struct SNDLfo *lfo); +s32 SND_LfoGetValue(struct SNDLfo *lfo); + +#endif //GUARD_SND_LFO_H |