mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-04 16:49:42 -04:00
Fix MSVC compiler and linker errors
- Fix struct/class forward declaration mismatches (JAIAudience, JASTrack) causing different MSVC mangled names and unresolved symbols - Add jsystem_stubs.cpp with stubs for JASHeap, JASVoiceBank, J3DShapeTable, JAUSection, JHICommBuf, HIO/HIO2, JOR
This commit is contained in:
@@ -7,12 +7,16 @@
|
||||
|
||||
extern void mDoGph_BlankingON();
|
||||
extern void mDoGph_BlankingOFF();
|
||||
extern void mDoGph_BeforeOfDraw();
|
||||
extern void mDoGph_AfterOfDraw();
|
||||
extern void mDoGph_Painter();
|
||||
extern void mDoGph_Create();
|
||||
extern int mDoGph_BeforeOfDraw();
|
||||
extern int mDoGph_AfterOfDraw();
|
||||
extern int mDoGph_Painter();
|
||||
extern int mDoGph_Create();
|
||||
|
||||
cAPI_Interface g_cAPI_Interface = {
|
||||
mDoGph_Create, mDoGph_BeforeOfDraw, mDoGph_AfterOfDraw,
|
||||
mDoGph_Painter, mDoGph_BlankingON, mDoGph_BlankingOFF,
|
||||
(cAPIGph_Mthd)mDoGph_Create,
|
||||
(cAPIGph_Mthd)mDoGph_BeforeOfDraw,
|
||||
(cAPIGph_Mthd)mDoGph_AfterOfDraw,
|
||||
(cAPIGph_Mthd)mDoGph_Painter,
|
||||
mDoGph_BlankingON,
|
||||
mDoGph_BlankingOFF,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user