blob: e92986917344224252835b6c1be23ffea8f28820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef M_DO_M_DO_PRINTF_H
#define M_DO_M_DO_PRINTF_H
#include "Runtime.PPCEABI.H/__va_arg.h"
#include "m_Do/m_Do_main.h"
extern "C" {
void OSReportDisable();
void OSReportEnable();
void OSReportForceEnableOn();
void OSReportForceEnableOff();
void OSVReport(const char* format, va_list list);
void OSReport(const char* fmt, ...);
void OSReport_FatalError(const char* fmt, ...);
void OSReport_Error(const char* fmt, ...);
void OSReport_Warning(const char* fmt, ...);
void OSPanic(const char* file, s32 line, const char* fmt, ...);
}
void OSReportInit();
#endif /* M_DO_M_DO_PRINTF_H */
|