mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-22 09:54:45 -05:00
26 lines
324 B
C
26 lines
324 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void
|
|
OSConsoleWrite(const char *msg,
|
|
uint32_t size);
|
|
|
|
void
|
|
OSReport(const char *fmt, ...);
|
|
|
|
void
|
|
OSPanic(const char *file,
|
|
uint32_t line,
|
|
const char *fmt, ...);
|
|
|
|
void
|
|
OSFatal(const char *msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|