mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-12 13:35:35 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
29 lines
501 B
C
29 lines
501 B
C
#ifndef JASPROBE_H
|
|
#define JASPROBE_H
|
|
|
|
#include <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 */
|