Files
RedHotRoast-ios/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/os/Generic/CpuInfo.cpp
T

23 lines
292 B
C++
Raw Normal View History

2026-07-17 14:03:00 +08:00
#include "os/c-api/il2cpp-config-platforms.h"
#if !IL2CPP_PLATFORM_SUPPORTS_CPU_INFO
#include "os/CpuInfo.h"
namespace il2cpp
{
namespace os
{
void* CpuInfo::Create()
{
return NULL;
}
int32_t CpuInfo::Usage(void* previous)
{
return 0;
}
}
}
#endif