SysCheck-ModMii-Edition/include/thread.h
2013-11-12 16:34:59 +00:00

16 lines
299 B
C

#ifndef __THREAD_H__
#define __THREAD_H__
#include <ogc/lwp.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