mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
5867eaf68b
* typedef for cPhs_Step * make sdk includes consistent * d_menu_quit / d_msg_scrn_explain debug * d_a_obj_testcube mostly done * d_debug_pad mostly done * jstudio tool library headers * some JStudioCameraEditor headers * d_jcam_editor mostly done * try fixing some shield regressions * d_bg_parts mostly done * fix merge errors * debug fix
29 lines
509 B
C
29 lines
509 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 */ s32 mStartTime;
|
|
/* 0x008 */ f32 _08;
|
|
/* 0x00C */ f32 _0C;
|
|
/* 0x010 */ f32 _10;
|
|
/* 0x014 */ f32 _14;
|
|
/* 0x018 */ f32 _18[100];
|
|
/* 0x1A8 */ u32 _1A8;
|
|
};
|
|
|
|
#endif /* JASPROBE_H */
|