mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-26 05:05:24 +00:00
15 lines
271 B
C
15 lines
271 B
C
|
#pragma once
|
||
|
|
||
|
#include "basis/seadTypes.h"
|
||
|
|
||
|
namespace sead
|
||
|
{
|
||
|
class ThreadUtil
|
||
|
{
|
||
|
public:
|
||
|
static s32 ConvertPrioritySeadToPlatform(s32 prio);
|
||
|
static s32 ConvertPriorityPlatformToSead(s32 prio);
|
||
|
static uintptr_t GetCurrentStackPointer();
|
||
|
};
|
||
|
} // namespace sead
|