wut/include/coreinit/debug.h

22 lines
297 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
WUT_LIB_HEADER_START
2016-01-06 00:24:54 +01:00
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);
WUT_LIB_HEADER_END