wut/include/coreinit/debug.h

26 lines
324 B
C
Raw Normal View History

2016-01-06 00:24:54 +01:00
#pragma once
2016-01-07 13:07:13 +01:00
#include <wut.h>
2016-01-06 00:24:54 +01:00
#ifdef __cplusplus
extern "C" {
#endif
void
2016-01-07 13:48:11 +01:00
OSConsoleWrite(const char *msg,
uint32_t size);
2016-01-06 00:24:54 +01:00
void
OSReport(const char *fmt, ...);
void
2016-01-07 13:48:11 +01:00
OSPanic(const char *file,
uint32_t line,
const char *fmt, ...);
2016-01-06 00:24:54 +01:00
void
OSFatal(const char *msg);
#ifdef __cplusplus
}
#endif