mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
18710b9767
* remove invalid virtual keywords * remove duplicate inline * remove leading 0 in character literals * add missing public keywords * fix some struct/class mismatches
17 lines
365 B
C++
17 lines
365 B
C++
#ifndef M_DO_M_DO_MACHINE_EXCEPTION_H
|
|
#define M_DO_M_DO_MACHINE_EXCEPTION_H
|
|
|
|
#include "dolphin/gx/GX.h"
|
|
|
|
class JUTConsole;
|
|
|
|
void print_f(char const*, ...);
|
|
void print(char const*);
|
|
void dispHeapInfo();
|
|
void dispGameInfo();
|
|
void dispDateInfo();
|
|
void dispConsoleToTerminal();
|
|
void exception_addition(JUTConsole* pConsole);
|
|
|
|
#endif /* M_DO_M_DO_MACHINE_EXCEPTION_H */
|