mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 19:41:52 +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
|