Import project

Original repository: https://github.com/encounter/ww
This commit is contained in:
Luke Street
2023-09-10 00:42:26 -04:00
parent 81ac53f131
commit adb95b135c
3731 changed files with 481532 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef C_API_H
#define C_API_H
#include "dolphin/types.h"
typedef void (*cAPIGph_Mthd)(void);
struct cAPIGph__Iface
{
u8 * mpGInfo;
cAPIGph_Mthd mpCreate;
cAPIGph_Mthd mpBeforeOfDraw;
cAPIGph_Mthd mpAfterOfDraw;
cAPIGph_Mthd mpPainter;
cAPIGph_Mthd mpBlankingOn;
cAPIGph_Mthd mpBlankingOff;
};
extern cAPIGph__Iface g_cAPI_Interface;
#endif /* C_API_H */