mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
26 lines
479 B
C
26 lines
479 B
C
#ifndef JASAUDIORESETER_H
|
|
#define JASAUDIORESETER_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
struct JASAudioReseter {
|
|
JASAudioReseter();
|
|
~JASAudioReseter();
|
|
bool start(u32, bool);
|
|
void resume();
|
|
s32 checkDone() const;
|
|
s32 calc();
|
|
static s32 callback(void*);
|
|
|
|
/* 0x0 */ u32 field_0x0;
|
|
/* 0x4 */ f32 mDSPLevel;
|
|
/* 0x8 */ s32 mIsDone;
|
|
/* 0xC */ bool field_0xc;
|
|
}; // Size: 0x10
|
|
|
|
#endif /* JASAUDIORESETER_H */
|