mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07: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
|