mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-17 13:49:22 +01:00
11 lines
205 B
C
11 lines
205 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);
|
||
|
#endif
|