mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:42:38 +01:00
37330b5046
- added some gx2 logical ORed enums as typdef enum does not allow OR operations without a cast in C++ - added AXQuit in sndcore2 - added OSGetTitleID in coreinit - removed not existing functions from nsysnet and added inet_ntoa
15 lines
135 B
C
15 lines
135 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
u64 OSGetTitleID(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|