mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
15 lines
175 B
C
15 lines
175 B
C
#ifndef LOS_THREAD_H
|
|
#define LOS_THREAD_H
|
|
|
|
#include "types.h"
|
|
#include "dolphin/os/OSThread.h"
|
|
|
|
typedef s32 OSPri;
|
|
typedef s32 OSId;
|
|
|
|
|
|
|
|
OSId osGetThreadId(OSThread*);
|
|
|
|
#endif
|