mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
22 lines
308 B
C
22 lines
308 B
C
#ifndef VI_H
|
|
#define VI_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void VISetBlack(BOOL);
|
|
void VIWaitForRetrace();
|
|
void VIConfigurePan(u16 x_origin, u16 y_origin, u16 width, u16 height);
|
|
u32 VIGetRetraceCount();
|
|
u32 VIGetDTVStatus();
|
|
void VIFlush();
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|