mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 01:31:50 +01:00
23 lines
203 B
C
23 lines
203 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
uint32_t
|
||
|
OSGetCoreCount();
|
||
|
|
||
|
uint32_t
|
||
|
OSGetCoreId();
|
||
|
|
||
|
uint32_t
|
||
|
OSGetMainCoreId();
|
||
|
|
||
|
BOOL
|
||
|
OSIsMainCore();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|