mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
7d271be857
* d_resource / some d_stage * setup dDlst_list_c / d_select_icon OK * JUTXfb / some JUTVideo + various * some J2D classes / JUTVideo/Fader attempts * bunch of m_Do cleanup + matches / f_ap_game OK * mDoLib_clipper::setup OK * most of d_meter_HIO OK * pane_class / kantera_icon_meter
37 lines
955 B
C
37 lines
955 B
C
#ifndef JFWSYSTEM_H
|
|
#define JFWSYSTEM_H
|
|
|
|
#include "JSystem/JUtility/JUTConsole.h"
|
|
#include "dolphin/types.h"
|
|
|
|
struct JFWSystem {
|
|
struct CSetUpParam {
|
|
static u32 maxStdHeaps;
|
|
static u32 sysHeapSize;
|
|
static u32 fifoBufSize;
|
|
static u32 aramAudioBufSize;
|
|
static u32 aramGraphBufSize;
|
|
static u32 streamPriority;
|
|
static u32 decompPriority;
|
|
static u32 aPiecePriority;
|
|
static void* systemFontRes;
|
|
static void* renderMode;
|
|
static u32 exConsoleBufferSize[1 + 1 /* padding */];
|
|
};
|
|
|
|
/* 80271CD0 */ void firstInit();
|
|
/* 80271D18 */ void init();
|
|
|
|
static JUTConsole* getSystemConsole() { return systemConsole; }
|
|
|
|
static u8 rootHeap[4];
|
|
static u8 systemHeap[4];
|
|
static u8 mainThread[4];
|
|
static u8 debugPrint[4];
|
|
static u8 systemFont[4];
|
|
static u8 systemConsoleManager[4];
|
|
static JUTConsole* systemConsole;
|
|
};
|
|
|
|
#endif /* JFWSYSTEM_H */
|