mirror of
https://github.com/zeldaret/tp
synced 2026-06-26 02:14:43 -04:00
853a6addb4
* struct JASWaveArc forward declare fix * JASAramStream::THeader improvement * sizeof/offsetof unhardcodings * JAudio field name/comment pass HUGE thanks to XAYRGA for their work documenting JAudio file formats * Some more names * More names * More minor names * Attempt to fix regressions
13 lines
389 B
C
13 lines
389 B
C
#ifndef DSPPROC_H
|
|
#define DSPPROC_H
|
|
|
|
#include <types.h>
|
|
|
|
void DSPReleaseHalt2(u32 msg);
|
|
void DsetupTable(u32 channelCount, u32 channelBufferAddress, u32 param_2, u32 param_3, u32 param_4);
|
|
void DsetMixerLevel(f32 level);
|
|
void DsyncFrame2ch(u32 param_0, u32 param_1, u32 param_2);
|
|
void DsyncFrame4ch(u32 param_0, u32 param_1, u32 param_2, u32 param_3, u32 param_4);
|
|
|
|
#endif /* DSPPROC_H */
|