mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-22 22:24:16 -04:00
19 lines
245 B
C
19 lines
245 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);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|