mirror of
https://github.com/encounter/ww.git
synced 2026-03-30 11:42:38 -07:00
20911c5d81
# Conflicts: # config/GZLE01/splits.txt # config/GZLJ01/splits.txt # config/GZLP01/splits.txt # configure.py # include/JSystem/JKernel/JKRDvdRipper.h # include/JSystem/JUtility/JUTAssert.h # include/SSystem/SComponent/c_API.h # src/SSystem/SComponent/c_API.cpp # src/SSystem/SComponent/c_API_graphic.cpp # src/f_pc/f_pc_profile_lst.cpp
22 lines
389 B
C
22 lines
389 B
C
#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 */
|