mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-16 13:19:22 +01:00
6ef97e01d3
-Added conf.c patch for libogc v1.8.11 and below
14 lines
275 B
C
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 |