mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 20:01:53 +01:00
2e776838ff
So we don't have to extern C and pragma pack in every header file.
22 lines
297 B
C
22 lines
297 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
WUT_LIB_HEADER_START
|
|
|
|
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);
|
|
|
|
WUT_LIB_HEADER_END
|