Files
2024-11-01 16:01:19 +01:00

14 lines
174 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