yunque9/xcode/Libraries/libil2cpp/include/os/TimeZoneInfo.h

17 lines
361 B
C
Raw Permalink Normal View History

2025-06-20 11:52:54 +08:00
#pragma once
namespace il2cpp
{
namespace os
{
class TimeZoneInfo
{
public:
static bool UsePalForTimeZoneInfo();
static void* GetTimeZoneIDs();
static bool GetLocalTimeZoneData(void** nativeRawData, char** nativeID, int* size);
static bool GetTimeZoneDataForID(char* id, void** nativeRawData, int* size);
};
}
}