SysCheck-ModMii-Edition/include/thread.h
Joostinonline 4a2bbe92ae -App now exits properly on error, and textures are freed
-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
2013-10-25 19:14:36 +00:00

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