mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
31 lines
569 B
C
31 lines
569 B
C
#ifndef M_DO_RESET_H_
|
|
#define M_DO_RESET_H_
|
|
|
|
#include "JSystem/JUtility/JUTXfb/JUTXfb.h"
|
|
#include "dolphin/types.h"
|
|
|
|
struct ResetData {
|
|
s32 field_0x0;
|
|
u32 field_0x4;
|
|
s32 field_0x8;
|
|
s32 pad_index;
|
|
u8 field_0x10;
|
|
u8 field_0x11;
|
|
u8 field_0x12;
|
|
u8 field_0x13;
|
|
u8 field_0x14;
|
|
u8 field_0x15;
|
|
u8 field_0x16;
|
|
u8 field_0x17;
|
|
};
|
|
|
|
struct mDoRst {
|
|
ResetData* getResetData();
|
|
};
|
|
|
|
void mDoRst_reset(int p1, u32 p2, int p3);
|
|
void mDoRst_resetCallBack(int p1, void* p2);
|
|
|
|
extern ResetData* m_Do_Reset_NS_mDoRst_NS_mResetData;
|
|
|
|
#endif |