mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-26 15:24:30 -04:00
178194ccb2
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
20 lines
599 B
C++
20 lines
599 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();
|
|
|
|
/* ############################################################################################## */
|
|
/* 803C3528-803C3540 0018+00 s=0 e=3 z=0 None .data g_cAPI_Interface */
|
|
cAPI_Interface g_cAPI_Interface = {
|
|
mDoGph_Create, mDoGph_BeforeOfDraw, mDoGph_AfterOfDraw,
|
|
mDoGph_Painter, mDoGph_BlankingON, mDoGph_BlankingOFF,
|
|
}; |