forked from focus-creative-games/il2cpp_plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimeZoneInfo.cpp
More file actions
39 lines (32 loc) · 720 Bytes
/
TimeZoneInfo.cpp
File metadata and controls
39 lines (32 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "os/c-api/il2cpp-config-platforms.h"
#if !IL2CPP_PLATFORM_SUPPORTS_TIMEZONEINFO
#include "os/TimeZoneInfo.h"
#include <stddef.h>
namespace il2cpp
{
namespace os
{
bool TimeZoneInfo::UsePalForTimeZoneInfo()
{
return false;
}
void* TimeZoneInfo::GetTimeZoneIDs()
{
return NULL;
}
bool TimeZoneInfo::GetLocalTimeZoneData(void** nativeRawData, char** nativeID, int* size)
{
*nativeRawData = NULL;
*nativeID = NULL;
*size = 0;
return false;
}
bool TimeZoneInfo::GetTimeZoneDataForID(char* id, void** nativeRawData, int* size)
{
*nativeRawData = NULL;
*size = 0;
return false;
}
}
}
#endif