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

22
include/dolphin/vifuncs.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef _DOLPHIN_VIFUNCS
#define _DOLPHIN_VIFUNCS
#include <dolphin/types.h>
#include <dolphin/vitypes.h>
#ifdef __cplusplus
extern "C" {
#endif
u32 VIGetNextField(void);
VIRetraceCallback VISetPreRetraceCallback(VIRetraceCallback callback);
VIRetraceCallback VISetPostRetraceCallback(VIRetraceCallback callback);
void __VIGetCurrentPosition(s16* x, s16* y);
u32 VIGetDTVStatus(void);
#ifdef __cplusplus
}
#endif
#endif // _DOLPHIN_VIFUNCS