Files
mm/include/main.h
T
Derek Hensley 22035890fa Idle + Main bss and cleanup (#1292)
* Idle bss and cleanup

* main bss and cleanup

* format

* Remove pad comment about sAudioMgr

* PR

* Missed a couple size_t changes

* unused pads

* static
2023-06-26 10:18:50 +10:00

20 lines
334 B
C

#ifndef MAIN_H
#define MAIN_H
#include "ultra64.h"
#include "scheduler.h"
#include "padmgr.h"
extern s32 gScreenWidth;
extern s32 gScreenHeight;
extern size_t gSystemHeapSize;
extern u32 gSegments[NUM_SEGMENTS];
extern SchedContext gSchedContext;
extern OSThread gGraphThread;
extern PadMgr gPadMgr;
void Main(void* arg);
#endif