mirror of https://github.com/PrimeDecomp/prime.git
22 lines
401 B
C
22 lines
401 B
C
#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);
|
|
u32 VIGetDTVStatus(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _DOLPHIN_VIFUNCS
|