You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
Co-authored-by: Louis <35883445+louist103@users.noreply.github.com> Co-authored-by: Nicholas Estelami <NEstelami@users.noreply.github.com> Co-authored-by: Random06457 <28494085+Random06457@users.noreply.github.com>
28 lines
714 B
C
28 lines
714 B
C
#ifndef PR_OS_INTERNAL_H
|
|
#define PR_OS_INTERNAL_H
|
|
|
|
#include <libultraship/libultra/exception.h>
|
|
|
|
#if 0
|
|
#include "ultratypes.h"
|
|
#include "os_message.h"
|
|
#include "os_pi.h"
|
|
#include "os_internal_rsp.h"
|
|
|
|
typedef struct __osHwInt {
|
|
/* 0x00 */ OSMesgQueue* queue;
|
|
/* 0x04 */ OSMesg msg;
|
|
} __osHwInt; // size = 0x08
|
|
|
|
typedef struct {
|
|
/* 0x00 */ u32 initialized;
|
|
/* 0x04 */ OSThread* mgrThread;
|
|
/* 0x08 */ OSMesgQueue* cmdQueue;
|
|
/* 0x0C */ OSMesgQueue* eventQueue;
|
|
/* 0x10 */ OSMesgQueue* accessQueue;
|
|
/* 0x14 */ s32 (*piDmaCallback)(s32, uintptr_t, void*, size_t);
|
|
/* 0x18 */ s32 (*epiDmaCallback)(OSPiHandle*, s32, uintptr_t, void*, size_t);
|
|
} OSMgrArgs; // size = 0x1C
|
|
|
|
#endif
|
|
#endif |