mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:21:52 +01:00
23 lines
296 B
C
23 lines
296 B
C
|
#pragma once
|
||
|
#include <stdint.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
|