mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-07 23:40:44 +01:00
Update include layout.
This commit is contained in:
parent
47f4819213
commit
300c0e45ba
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
|
@ -4,6 +4,9 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void
|
||||||
|
exit(int code);
|
||||||
|
|
||||||
void
|
void
|
||||||
_Exit();
|
_Exit();
|
||||||
|
|
@ -1,12 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void
|
|
||||||
OSFatal(const char *msg);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
24
include/gx2/state.h
Normal file
24
include/gx2/state.h
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
enum GX2InitAttributes
|
||||||
|
{
|
||||||
|
GX2_INIT_END = 0,
|
||||||
|
GX2_INIT_CMD_BUF_BASE = 1,
|
||||||
|
GX2_INIT_CMD_BUF_POOL_SIZE = 2,
|
||||||
|
GX2_INIT_ARGC = 7,
|
||||||
|
GX2_INIT_ARGV = 8,
|
||||||
|
};
|
||||||
|
|
||||||
|
void
|
||||||
|
GX2Init(uint32_t *attributes);
|
||||||
|
|
||||||
|
void
|
||||||
|
GX2Shutdown();
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
@ -1,15 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void
|
|
||||||
GX2Init();
|
|
||||||
|
|
||||||
void
|
|
||||||
GX2Shutdown();
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
@ -1,2 +1,9 @@
|
|||||||
EXPORT(_Exit);
|
// coreinit/debug.h
|
||||||
EXPORT(OSFatal);
|
EXPORT(OSConsoleWrite);
|
||||||
|
EXPORT(OSReport);
|
||||||
|
EXPORT(OSPanic);
|
||||||
|
EXPORT(OSFatal);
|
||||||
|
|
||||||
|
// coreinit/exit.h
|
||||||
|
EXPORT(exit);
|
||||||
|
EXPORT(_Exit);
|
@ -1,2 +1,3 @@
|
|||||||
|
// gx2/state.h
|
||||||
EXPORT(GX2Init);
|
EXPORT(GX2Init);
|
||||||
EXPORT(GX2Shutdown);
|
EXPORT(GX2Shutdown);
|
@ -1,8 +1,8 @@
|
|||||||
#include <coreinit_debug.h>
|
#include <coreinit/debug.h>
|
||||||
#include <gx2_init.h>
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
OSReport("Testing var args %d", argc);
|
||||||
OSFatal("my first rpx");
|
OSFatal("my first rpx");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user