Files
tp/include/JSystem/JAudio2/JASProbe.h
T
TakaRikka a6e76c0841 project cleanup (#2895)
* 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
2025-11-30 15:23:42 -07:00

29 lines
510 B
C

#ifndef JASPROBE_H
#define JASPROBE_H
#include "dolphin/types.h"
/**
* @ingroup jsystem-jaudio
*
*/
struct JASProbe {
static void start(s32, char const*);
void start(char const*);
void stop();
static void stop(s32);
static JASProbe* sProbeTable[16];
/* 0x000 */ char const* mName;
/* 0x004 */ long mStartTime;
/* 0x008 */ f32 _08;
/* 0x00C */ f32 _0C;
/* 0x010 */ f32 _10;
/* 0x014 */ f32 _14;
/* 0x018 */ f32 _18[100];
/* 0x1A8 */ u32 _1A8;
};
#endif /* JASPROBE_H */