mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
a7edd19f16
* cleanup SSystem files * MSL_C fully matched * fix build * remove asm * reorganize MSL_C/Runtime libs into more accurate setup * little more cleanup * cleanup some MSL headers * obj_rgate OK * remove asm * some rgate documentation
23 lines
576 B
C++
23 lines
576 B
C++
/**
|
|
* c_API_graphic.cpp
|
|
*
|
|
*/
|
|
|
|
#include "SSystem/SComponent/c_API_graphic.h"
|
|
#include "SSystem/SComponent/c_API.h"
|
|
|
|
/* 802632C8-802632F8 0030+00 s=0 e=1 z=0 None .text cAPIGph_Painter__Fv */
|
|
void cAPIGph_Painter() {
|
|
g_cAPI_Interface.painterMtd();
|
|
}
|
|
|
|
/* 802632F8-80263328 0030+00 s=0 e=1 z=0 None .text cAPIGph_BeforeOfDraw__Fv */
|
|
void cAPIGph_BeforeOfDraw() {
|
|
g_cAPI_Interface.beforeOfDrawMtd();
|
|
}
|
|
|
|
/* 80263328-80263358 0030+00 s=0 e=1 z=0 None .text cAPIGph_AfterOfDraw__Fv */
|
|
void cAPIGph_AfterOfDraw() {
|
|
g_cAPI_Interface.afterOfDrawMtd();
|
|
}
|