Update include layout.

This commit is contained in:
James Benton
2016-01-05 15:24:54 -08:00
parent 47f4819213
commit 300c0e45ba
8 changed files with 61 additions and 31 deletions

22
include/coreinit/debug.h Normal file
View 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