Files
tp/include/JSystem/JAudio2/JASProbe.h
T

29 lines
509 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef JASPROBE_H
#define JASPROBE_H
#include "dolphin/types.h"
2024-04-12 00:10:30 -06:00
/**
* @ingroup jsystem-jaudio
*
*/
2023-08-02 11:30:52 +03:00
struct JASProbe {
2025-11-30 14:23:42 -08:00
static void start(s32, char const*);
void start(char const*);
void stop();
static void stop(s32);
2023-08-02 11:30:52 +03:00
static JASProbe* sProbeTable[16];
/* 0x000 */ char const* mName;
2025-12-18 16:31:44 -05:00
/* 0x004 */ s32 mStartTime;
2023-08-02 11:30:52 +03:00
/* 0x008 */ f32 _08;
/* 0x00C */ f32 _0C;
/* 0x010 */ f32 _10;
/* 0x014 */ f32 _14;
/* 0x018 */ f32 _18[100];
/* 0x1A8 */ u32 _1A8;
};
2021-03-28 22:49:05 +02:00
#endif /* JASPROBE_H */