mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-27 06:40:36 +00:00
af0123de1e
* Match SkelCurve_Update Co-authored-by: Kelebek1 <34639600+Kelebek1@users.noreply.github.com> * Match and document z_fcurve_data * Begin documenting SkelCurve * More documentation * Deformat header * Pluralise knotCount * Sort out jointTable * Rename frameCount * Format * More documentation * Cleanup on DemoEffect * Remove space on typedef * Format, couple of fixes in the header * Review * Oops * Fix EnBox, DemoTreLgt, use macros in EnTorch Co-authored-by: Kelebek1 <34639600+Kelebek1@users.noreply.github.com>
20 lines
535 B
C
20 lines
535 B
C
#ifndef _OS_INTERNAL_H_
|
|
#define _OS_INTERNAL_H_
|
|
|
|
typedef struct {
|
|
/* 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, u32, void*, size_t);
|
|
/* 0x18 */ s32 (*epiDmaCallback)(OSPiHandle*, s32, u32, void*, size_t);
|
|
} OSMgrArgs; // size = 0x1C
|
|
|
|
#endif
|