Files
2023-09-09 20:49:38 -04:00

22 lines
406 B
C

#ifndef C_API_H
#define C_API_H
#include "dolphin/types.h"
typedef void (*cAPIGph_Mthd)(void);
struct cAPI_Interface {
u8* graphicInfo;
cAPIGph_Mthd create;
cAPIGph_Mthd beforeOfDraw;
cAPIGph_Mthd afterOfDraw;
cAPIGph_Mthd painter;
cAPIGph_Mthd blankingON;
cAPIGph_Mthd blankingOFF;
cAPIGph_Mthd unk0x1C;
};
extern cAPI_Interface g_cAPI_Interface;
#endif /* C_API_H */