mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 19:41:52 +01:00
2e776838ff
So we don't have to extern C and pragma pack in every header file.
50 lines
1014 B
C
50 lines
1014 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
WUT_LIB_HEADER_START
|
|
|
|
typedef struct OSThread OSThread;
|
|
|
|
typedef struct OSThreadLink OSThreadLink;
|
|
typedef struct OSThreadQueue OSThreadQueue;
|
|
typedef struct OSThreadSimpleQueue OSThreadSimpleQueue;
|
|
|
|
struct OSThreadLink
|
|
{
|
|
OSThread *prev;
|
|
OSThread *next;
|
|
};
|
|
CHECK_OFFSET(OSThreadLink, 0x00, prev);
|
|
CHECK_OFFSET(OSThreadLink, 0x04, next);
|
|
CHECK_SIZE(OSThreadLink, 0x8);
|
|
|
|
struct OSThreadQueue
|
|
{
|
|
OSThread *head;
|
|
OSThread *tail;
|
|
void *parent;
|
|
UNKNOWN(4);
|
|
};
|
|
CHECK_OFFSET(OSThreadQueue, 0x00, head);
|
|
CHECK_OFFSET(OSThreadQueue, 0x04, tail);
|
|
CHECK_OFFSET(OSThreadQueue, 0x08, parent);
|
|
CHECK_SIZE(OSThreadQueue, 0x10);
|
|
|
|
struct OSThreadSimpleQueue
|
|
{
|
|
OSThread *head;
|
|
OSThread *tail;
|
|
};
|
|
CHECK_OFFSET(OSThreadSimpleQueue, 0x00, head);
|
|
CHECK_OFFSET(OSThreadSimpleQueue, 0x04, tail);
|
|
CHECK_SIZE(OSThreadSimpleQueue, 0x08);
|
|
|
|
void
|
|
OSInitThreadQueue(OSThreadQueue *queue);
|
|
|
|
void
|
|
OSInitThreadQueueEx(OSThreadQueue *queue,
|
|
void *parent);
|
|
|
|
WUT_LIB_HEADER_END
|