Files
tp/include/m_Do/m_Do_Reset/m_Do_Reset.h
T
c70d485d35 normalize header guards to {tu_name}_H_ (#87)
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>
2021-01-18 14:02:51 -05:00

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