Files
2023-03-06 20:27:17 +01:00

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