mirror of
https://github.com/devkitPro/wut.git
synced 2026-08-25 12:14:11 -05:00
Update include layout.
This commit is contained in:
22
include/coreinit/debug.h
Normal file
22
include/coreinit/debug.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user