mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
174af7384d
* cleanup libultra * fixes - use quotes instead of <> for includes - add macros for zelda specific thread priorities - fix Makefile - properly format the remaining pfs structs * fix button macros + add CHECK_BTN_ANY/CHECK_BTN_ALL * remove ULTRA_ABS * fix includes * update z_player.c/z_lib.c + run format.sh * merge upstream/master * fix include in En_Goroiwa * fix includes
28 lines
771 B
C
28 lines
771 B
C
#ifndef _ULTRA64_INTERNAL_H_
|
|
#define _ULTRA64_INTERNAL_H_
|
|
|
|
typedef struct {
|
|
/* 0x00 */ u32 initialized;
|
|
/* 0x04 */ OSThread* mgrThread;
|
|
/* 0x08 */ OSMesgQueue* cmdQueue;
|
|
/* 0x0C */ OSMesgQueue* eventQueue;
|
|
/* 0x10 */ OSMesgQueue* acccessQueue;
|
|
/* 0x14 */ s32 (*piDmaCallback)(s32, u32, void*, size_t);
|
|
/* 0x18 */ s32 (*epiDmaCallback)(OSPiHandle*, s32, u32, void*, size_t);
|
|
} OSMgrArgs; // size = 0x1C
|
|
|
|
typedef struct {
|
|
/* 0x00 */ OSMesgQueue* queue;
|
|
/* 0x04 */ OSMesg msg;
|
|
} __osHwInt; // size = 0x08
|
|
|
|
typedef struct {
|
|
/* 0x00 */ OSMesgQueue* queue;
|
|
/* 0x04 */ OSMesg msg;
|
|
} __OSEventState; // size = 0x08
|
|
|
|
extern OSMgrArgs __osPiDevMgr;
|
|
extern __osHwInt __osHwIntTable[];
|
|
extern __OSEventState __osEventStateTab[];
|
|
|
|
#endif
|