LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/os/TimeZoneInfo.h
2019-07-01 14:33:21 +02:00

17 lines
361 B
C++

#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);
};
}
}