mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-17 21:59:20 +01:00
4a2bbe92ae
-Fixed loading bar and cogs not appearing during upload -More work on rewriting IOS_ReloadIOS() so that cogs pause less -Cogs disappear if there is an error -A little more code cleanup
12 lines
228 B
C
12 lines
228 B
C
#ifndef __THREAD_H__
|
|
#define __THREAD_H__
|
|
|
|
extern vu8 done;
|
|
extern lwp_t Cog_Thread;
|
|
|
|
void InitThread(void);
|
|
void * DrawCogThread(void *arg);
|
|
s32 PauseThread(void);
|
|
s32 ResumeThread(void);
|
|
s32 StopThread(void);
|
|
#endif |