SysCheck-ModMii-Edition/include/thread.h
Joostinonline 6ef97e01d3 -Starting the long process of adding a bit of organization
-Added conf.c patch for libogc v1.8.11 and below
2013-11-01 15:31:34 +00:00

14 lines
275 B
C

#ifndef __THREAD_H__
#define __THREAD_H__
extern lwp_t Cog_Thread;
extern u64 Last_Cog_Turn;
extern u8 Cog_Num;
extern vu8 done;
void InitThread(void);
void * DrawCogThread(void *arg);
s32 PauseThread(void);
s32 ResumeThread(void);
s32 StopThread(void);
#endif