mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 09:39:48 -04:00
dfa8efa97b
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
19 lines
421 B
C++
19 lines
421 B
C++
/**
|
|
* c_API.cpp
|
|
*
|
|
*/
|
|
|
|
#include "SSystem/SComponent/c_API.h"
|
|
|
|
extern void mDoGph_BlankingON();
|
|
extern void mDoGph_BlankingOFF();
|
|
extern void mDoGph_BeforeOfDraw();
|
|
extern void mDoGph_AfterOfDraw();
|
|
extern void mDoGph_Painter();
|
|
extern void mDoGph_Create();
|
|
|
|
cAPI_Interface g_cAPI_Interface = {
|
|
mDoGph_Create, mDoGph_BeforeOfDraw, mDoGph_AfterOfDraw,
|
|
mDoGph_Painter, mDoGph_BlankingON, mDoGph_BlankingOFF,
|
|
};
|