Import SDK Types

This commit is contained in:
gamemasterplc 2023-11-22 14:01:55 -06:00
parent 84b3e69630
commit 4fe4c38e0d
86 changed files with 6528 additions and 27 deletions

View file

@ -0,0 +1,35 @@
#ifndef _THP_THPINFO_H
#define _THP_THPINFO_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
// Size 0xC
typedef struct THPVideoInfo {
u32 mXSize; // _00
u32 mYSize; // _04
u32 mVideoType; // _08
} THPVideoInfo;
// Size 0x10
typedef struct THPAudioInfo {
u32 mSndChannels; // _00
u32 mSndFrequency; // _04
u32 mSndNumSamples; // _08
u32 mSndNumTracks; // _0C
} THPAudioInfo;
// Size 0x14
typedef struct THPFrameCompInfo {
u32 mNumComponents; // _00
u8 mFrameComp[16]; // _04
} THPFrameCompInfo;
#ifdef __cplusplus
}
#endif
#endif