mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-08 00:10:44 +01:00
Fix struct forward declarations.
This commit is contained in:
parent
acfffa6d85
commit
04fd92f05f
@ -6,9 +6,8 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct OSMutex;
|
|
||||||
|
|
||||||
typedef struct OSCondition OSCondition;
|
typedef struct OSCondition OSCondition;
|
||||||
|
typedef struct OSMutex OSMutex;
|
||||||
|
|
||||||
#define OS_CONDITION_TAG 0x634E6456u
|
#define OS_CONDITION_TAG 0x634E6456u
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct OSThread;
|
typedef struct OSThread;
|
||||||
|
|
||||||
typedef struct OSCondition OSCondition;
|
typedef struct OSCondition OSCondition;
|
||||||
typedef struct OSMutex OSMutex;
|
typedef struct OSMutex OSMutex;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct OSThread;
|
typedef struct OSThread OSThread;
|
||||||
|
|
||||||
typedef struct OSThreadLink OSThreadLink;
|
typedef struct OSThreadLink OSThreadLink;
|
||||||
typedef struct OSThreadQueue OSThreadQueue;
|
typedef struct OSThreadQueue OSThreadQueue;
|
||||||
|
Loading…
Reference in New Issue
Block a user