Files
LagoLunatic e24cbed367 Demo work (#786)
* Demo work

* Fix PAL

* Fix d_door weak func order and link it

* Fix d_door for demo

* JKernel OK on demo + misc

* tag_attention 100% on demo

* More demo work and fix some retail fakematches
2025-06-04 16:50:49 -04:00

25 lines
635 B
C

#ifndef M_DO_M_DO_PRINTF_H
#define M_DO_M_DO_PRINTF_H
#include "stdarg.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();
extern u32 print_errors;
#endif /* M_DO_M_DO_PRINTF_H */