mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
c_API
This commit is contained in:
@@ -7,12 +7,6 @@
|
||||
#include "dol2asm.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
//
|
||||
// Forward References:
|
||||
//
|
||||
|
||||
extern "C" extern void* g_cAPI_Interface[6];
|
||||
|
||||
//
|
||||
// External References:
|
||||
//
|
||||
@@ -24,20 +18,13 @@ void mDoGph_AfterOfDraw();
|
||||
void mDoGph_Painter();
|
||||
void mDoGph_Create();
|
||||
|
||||
extern "C" void mDoGph_BlankingON__Fv();
|
||||
extern "C" void mDoGph_BlankingOFF__Fv();
|
||||
extern "C" void mDoGph_BeforeOfDraw__Fv();
|
||||
extern "C" void mDoGph_AfterOfDraw__Fv();
|
||||
extern "C" void mDoGph_Painter__Fv();
|
||||
extern "C" void mDoGph_Create__Fv();
|
||||
|
||||
//
|
||||
// Declarations:
|
||||
//
|
||||
|
||||
/* ############################################################################################## */
|
||||
/* 803C3528-803C3540 0018+00 s=0 e=3 z=0 None .data g_cAPI_Interface */
|
||||
SECTION_DATA void* g_cAPI_Interface[6] = {
|
||||
(void*)mDoGph_Create__Fv, (void*)mDoGph_BeforeOfDraw__Fv, (void*)mDoGph_AfterOfDraw__Fv,
|
||||
(void*)mDoGph_Painter__Fv, (void*)mDoGph_BlankingON__Fv, (void*)mDoGph_BlankingOFF__Fv,
|
||||
cAPIGph_Mthd g_cAPI_Interface[6] = {
|
||||
mDoGph_Create, mDoGph_BeforeOfDraw, mDoGph_AfterOfDraw,
|
||||
mDoGph_Painter, mDoGph_BlankingON, mDoGph_BlankingOFF,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user