2012-09-20 05:42:46 +04:00
|
|
|
/**
|
|
|
|
* WinPR: Windows Portable Runtime
|
|
|
|
* Time Zone
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2017-08-29 10:09:38 +03:00
|
|
|
#include <winpr/wtypes.h>
|
2012-09-20 05:42:46 +04:00
|
|
|
#include <winpr/timezone.h>
|
2016-02-23 20:08:18 +03:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include "../log.h"
|
|
|
|
|
|
|
|
#define TAG WINPR_TAG("timezone")
|
2012-09-20 05:42:46 +04:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
2016-02-23 20:08:18 +03:00
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
/* Table generated with TimeZones.csx */
|
|
|
|
#include "TimeZones.c"
|
2016-05-12 20:12:24 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
/* Table generated with WindowsZones.csx */
|
|
|
|
#include "WindowsZones.c"
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
static UINT64 winpr_windows_gmtime(void)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
|
|
|
time_t unix_time;
|
|
|
|
UINT64 windows_time;
|
|
|
|
time(&unix_time);
|
2018-10-24 18:40:05 +03:00
|
|
|
|
|
|
|
if (unix_time < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
windows_time = (UINT64)unix_time;
|
2016-02-23 20:08:18 +03:00
|
|
|
windows_time *= 10000000;
|
|
|
|
windows_time += 621355968000000000ULL;
|
|
|
|
return windows_time;
|
|
|
|
}
|
|
|
|
|
2016-02-24 22:16:19 +03:00
|
|
|
static char* winpr_read_unix_timezone_identifier_from_file(FILE* fp)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
INT64 length;
|
|
|
|
char* tzid = NULL;
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
if (_fseeki64(fp, 0, SEEK_END) != 0)
|
2016-02-23 20:15:25 +03:00
|
|
|
return NULL;
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
length = _ftelli64(fp);
|
2018-10-30 23:47:06 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
if (_fseeki64(fp, 0, SEEK_SET) != 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (length < 2)
|
|
|
|
return NULL;
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
tzid = (char*) malloc((size_t)length + 1);
|
|
|
|
|
|
|
|
if (!tzid)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (fread(tzid, (size_t)length, 1, fp) != 1)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
2016-02-23 20:15:25 +03:00
|
|
|
free(tzid);
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
tzid[length] = '\0';
|
|
|
|
|
|
|
|
if (tzid[length - 1] == '\n')
|
|
|
|
tzid[length - 1] = '\0';
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2016-02-23 20:15:25 +03:00
|
|
|
return tzid;
|
|
|
|
}
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2016-02-24 22:16:19 +03:00
|
|
|
static char* winpr_get_timezone_from_link(void)
|
2016-02-24 11:42:12 +03:00
|
|
|
{
|
|
|
|
const char* links[] =
|
|
|
|
{
|
|
|
|
"/etc/localtime",
|
|
|
|
"/etc/TZ"
|
|
|
|
};
|
|
|
|
size_t x;
|
|
|
|
ssize_t len;
|
|
|
|
char buf[1024];
|
|
|
|
char* tzid = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* On linux distros such as Redhat or Archlinux, a symlink at /etc/localtime
|
|
|
|
* will point to /usr/share/zoneinfo/region/place where region/place could be
|
|
|
|
* America/Montreal for example.
|
|
|
|
* Some distributions do have to symlink at /etc/TZ.
|
|
|
|
*/
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
for (x = 0; x < sizeof(links) / sizeof(links[0]); x++)
|
2016-02-24 11:42:12 +03:00
|
|
|
{
|
|
|
|
const char* link = links[x];
|
|
|
|
|
|
|
|
if ((len = readlink(link, buf, sizeof(buf) - 1)) != -1)
|
|
|
|
{
|
|
|
|
int num = 0;
|
2018-10-24 18:40:05 +03:00
|
|
|
size_t alloc;
|
|
|
|
SSIZE_T pos = len;
|
2016-02-24 11:42:12 +03:00
|
|
|
buf[len] = '\0';
|
|
|
|
|
|
|
|
/* find the position of the 2nd to last "/" */
|
|
|
|
|
|
|
|
while (num < 2)
|
|
|
|
{
|
|
|
|
if (pos == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
pos -= 1;
|
|
|
|
|
|
|
|
if (buf[pos] == '/')
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
if ((len < 0) || (pos < 0) || (pos > len))
|
2016-02-24 11:42:12 +03:00
|
|
|
return NULL;
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
alloc = (size_t)len - (size_t)pos;
|
|
|
|
tzid = (char*) malloc(alloc + 1);
|
|
|
|
|
|
|
|
if (!tzid)
|
|
|
|
return NULL;
|
2016-02-24 11:42:12 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
strncpy(tzid, buf + pos + 1, alloc);
|
2016-02-24 11:42:12 +03:00
|
|
|
return tzid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-12-05 12:20:21 +03:00
|
|
|
#if defined(ANDROID)
|
|
|
|
#include <jni.h>
|
|
|
|
static JavaVM* jniVm = NULL;
|
|
|
|
|
|
|
|
JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved)
|
|
|
|
{
|
|
|
|
jniVm = vm;
|
|
|
|
return JNI_VERSION_1_6;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* winpr_get_android_timezone_identifier(void)
|
|
|
|
{
|
|
|
|
char* tzid = NULL;
|
|
|
|
JNIEnv* jniEnv;
|
|
|
|
|
|
|
|
/* Preferred: Try to get identifier from java TimeZone class */
|
|
|
|
if (jniVm && ((*jniVm)->GetEnv(jniVm, (void**)&jniEnv, JNI_VERSION_1_6) == JNI_OK))
|
|
|
|
{
|
|
|
|
const char* raw;
|
|
|
|
jclass jObjClass;
|
|
|
|
jobject jObj;
|
|
|
|
jmethodID jDefaultTimezone;
|
|
|
|
jmethodID jTimezoneIdentifier;
|
|
|
|
jstring tzJId;
|
|
|
|
jboolean attached = (*jniVm)->AttachCurrentThread(jniVm, &jniEnv, NULL);
|
|
|
|
jObjClass = (*jniEnv)->FindClass(jniEnv, "java/util/TimeZone");
|
|
|
|
|
|
|
|
if (!jObjClass)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
jDefaultTimezone = (*jniEnv)->GetStaticMethodID(jniEnv, jObjClass, "getDefault",
|
|
|
|
"()Ljava/util/TimeZone;");
|
|
|
|
|
|
|
|
if (!jDefaultTimezone)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
jObj = (*jniEnv)->CallStaticObjectMethod(jniEnv, jObjClass, jDefaultTimezone);
|
|
|
|
|
|
|
|
if (!jObj)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
jTimezoneIdentifier = (*jniEnv)->GetMethodID(jniEnv, jObjClass, "getID", "()Ljava/lang/String;");
|
|
|
|
|
|
|
|
if (!jTimezoneIdentifier)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
tzJId = (*jniEnv)->CallObjectMethod(jniEnv, jObj, jTimezoneIdentifier);
|
|
|
|
|
|
|
|
if (!tzJId)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
raw = (*jniEnv)->GetStringUTFChars(jniEnv, tzJId, 0);
|
|
|
|
|
|
|
|
if (raw)
|
|
|
|
tzid = _strdup(raw);
|
|
|
|
|
|
|
|
(*jniEnv)->ReleaseStringUTFChars(jniEnv, tzJId, raw);
|
|
|
|
fail:
|
|
|
|
|
|
|
|
if (attached)
|
|
|
|
(*jniVm)->DetachCurrentThread(jniVm);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fall back to property, might not be available. */
|
|
|
|
if (!tzid)
|
|
|
|
{
|
|
|
|
FILE* fp = popen("getprop persist.sys.timezone", "r");
|
|
|
|
|
|
|
|
if (fp)
|
|
|
|
{
|
|
|
|
tzid = winpr_read_unix_timezone_identifier_from_file(fp);
|
|
|
|
pclose(fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tzid;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-02-24 22:16:19 +03:00
|
|
|
static char* winpr_get_unix_timezone_identifier_from_file(void)
|
2016-02-23 20:15:25 +03:00
|
|
|
{
|
2018-12-05 12:20:21 +03:00
|
|
|
#if defined(ANDROID)
|
|
|
|
return winpr_get_android_timezone_identifier();
|
|
|
|
#else
|
2016-02-23 20:15:25 +03:00
|
|
|
FILE* fp;
|
|
|
|
char* tzid = NULL;
|
2018-12-05 12:20:21 +03:00
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__)
|
2016-02-23 20:15:25 +03:00
|
|
|
fp = fopen("/var/db/zoneinfo", "r");
|
|
|
|
#else
|
|
|
|
fp = fopen("/etc/timezone", "r");
|
|
|
|
#endif
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
if (NULL == fp)
|
2016-02-23 20:15:25 +03:00
|
|
|
return NULL;
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2016-02-24 22:16:19 +03:00
|
|
|
tzid = winpr_read_unix_timezone_identifier_from_file(fp);
|
2016-02-23 20:15:25 +03:00
|
|
|
fclose(fp) ;
|
2016-02-23 20:08:18 +03:00
|
|
|
return tzid;
|
2018-12-05 12:20:21 +03:00
|
|
|
#endif
|
2016-02-23 20:08:18 +03:00
|
|
|
}
|
|
|
|
|
2016-02-24 22:16:19 +03:00
|
|
|
static BOOL winpr_match_unix_timezone_identifier_with_list(const char* tzid, const char* list)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
|
|
|
char* p;
|
|
|
|
char* list_copy;
|
|
|
|
list_copy = _strdup(list);
|
2018-10-24 18:40:05 +03:00
|
|
|
|
2016-02-23 20:08:18 +03:00
|
|
|
if (!list_copy)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
p = strtok(list_copy, " ");
|
|
|
|
|
|
|
|
while (p != NULL)
|
|
|
|
{
|
|
|
|
if (strcmp(p, tzid) == 0)
|
|
|
|
{
|
|
|
|
free(list_copy);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = strtok(NULL, " ");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(list_copy);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-03-16 15:29:21 +03:00
|
|
|
static TIME_ZONE_ENTRY* winpr_detect_windows_time_zone(void)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
size_t i, j;
|
2016-02-23 20:08:18 +03:00
|
|
|
char* tzid;
|
|
|
|
TIME_ZONE_ENTRY* timezone;
|
2016-02-24 22:16:19 +03:00
|
|
|
tzid = winpr_get_unix_timezone_identifier_from_file();
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2016-02-24 11:42:12 +03:00
|
|
|
if (tzid == NULL)
|
2016-02-24 22:16:19 +03:00
|
|
|
tzid = winpr_get_timezone_from_link();
|
2016-02-24 11:42:12 +03:00
|
|
|
|
2016-02-23 20:08:18 +03:00
|
|
|
if (tzid == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAYSIZE(TimeZoneTable); i++)
|
|
|
|
{
|
|
|
|
for (j = 0; j < ARRAYSIZE(WindowsTimeZoneIdTable); j++)
|
|
|
|
{
|
|
|
|
if (strcmp(TimeZoneTable[i].Id, WindowsTimeZoneIdTable[j].windows) != 0)
|
|
|
|
continue;
|
|
|
|
|
2016-02-24 22:16:19 +03:00
|
|
|
if (winpr_match_unix_timezone_identifier_with_list(tzid, WindowsTimeZoneIdTable[j].tzid))
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
|
|
|
free(tzid);
|
|
|
|
timezone = (TIME_ZONE_ENTRY*) malloc(sizeof(TIME_ZONE_ENTRY));
|
2018-10-24 18:40:05 +03:00
|
|
|
|
2016-02-23 20:08:18 +03:00
|
|
|
if (!timezone)
|
|
|
|
return NULL;
|
2018-10-24 18:40:05 +03:00
|
|
|
|
|
|
|
*timezone = TimeZoneTable[i];
|
2016-02-23 20:08:18 +03:00
|
|
|
return timezone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WLog_ERR(TAG, "Unable to find a match for unix timezone: %s", tzid);
|
|
|
|
free(tzid);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
static const TIME_ZONE_RULE_ENTRY* winpr_get_current_time_zone_rule(const TIME_ZONE_RULE_ENTRY*
|
|
|
|
rules, UINT32 count)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
UINT32 i;
|
2016-02-23 20:08:18 +03:00
|
|
|
UINT64 windows_time;
|
2016-02-24 22:16:19 +03:00
|
|
|
windows_time = winpr_windows_gmtime();
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
for (i = 0; i < count; i++)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
|
|
|
if ((rules[i].TicksStart >= windows_time) && (windows_time >= rules[i].TicksEnd))
|
|
|
|
{
|
2016-12-14 00:47:08 +03:00
|
|
|
/*WLog_ERR(TAG, "Got rule %d from table at %p with count %"PRIu32"", i, (void*) rules, count);*/
|
2016-02-23 20:08:18 +03:00
|
|
|
return &rules[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WLog_ERR(TAG, "Unable to get current timezone rule");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-05-29 19:58:53 +04:00
|
|
|
DWORD GetTimeZoneInformation(LPTIME_ZONE_INFORMATION lpTimeZoneInformation)
|
|
|
|
{
|
2016-02-23 20:08:18 +03:00
|
|
|
time_t t;
|
|
|
|
struct tm* local_time;
|
|
|
|
TIME_ZONE_ENTRY* dtz;
|
|
|
|
LPTIME_ZONE_INFORMATION tz = lpTimeZoneInformation;
|
|
|
|
lpTimeZoneInformation->StandardBias = 0;
|
|
|
|
time(&t);
|
|
|
|
local_time = localtime(&t);
|
|
|
|
memset(tz, 0, sizeof(TIME_ZONE_INFORMATION));
|
|
|
|
#ifdef HAVE_TM_GMTOFF
|
2018-10-24 18:40:05 +03:00
|
|
|
{
|
|
|
|
long bias = -(local_time->tm_gmtoff / 60L);
|
|
|
|
|
|
|
|
if (bias > INT32_MAX)
|
|
|
|
bias = INT32_MAX;
|
|
|
|
|
|
|
|
tz->Bias = (LONG)bias;
|
|
|
|
}
|
2016-02-23 20:08:18 +03:00
|
|
|
#else
|
|
|
|
tz->Bias = 0;
|
|
|
|
#endif
|
2016-03-10 23:10:49 +03:00
|
|
|
dtz = winpr_detect_windows_time_zone();
|
2016-02-23 20:08:18 +03:00
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
if (dtz != NULL)
|
2016-02-23 20:08:18 +03:00
|
|
|
{
|
2016-03-02 20:37:48 +03:00
|
|
|
int status;
|
2016-12-14 00:47:08 +03:00
|
|
|
WLog_DBG(TAG, "tz: Bias=%"PRId32" sn='%s' dln='%s'",
|
2018-10-24 18:40:05 +03:00
|
|
|
dtz->Bias, dtz->StandardName, dtz->DaylightName);
|
2016-02-23 20:08:18 +03:00
|
|
|
tz->Bias = dtz->Bias;
|
2016-03-10 23:10:49 +03:00
|
|
|
tz->StandardBias = 0;
|
|
|
|
tz->DaylightBias = 0;
|
2016-03-02 20:37:48 +03:00
|
|
|
ZeroMemory(tz->StandardName, sizeof(tz->StandardName));
|
|
|
|
ZeroMemory(tz->DaylightName, sizeof(tz->DaylightName));
|
|
|
|
status = MultiByteToWideChar(CP_UTF8, 0, dtz->StandardName, -1, tz->StandardName,
|
2018-10-24 18:40:05 +03:00
|
|
|
sizeof(tz->StandardName) / sizeof(WCHAR) - 1);
|
|
|
|
|
2016-03-02 20:37:48 +03:00
|
|
|
if (status < 1)
|
|
|
|
{
|
2016-03-10 23:10:49 +03:00
|
|
|
WLog_ERR(TAG, "StandardName conversion failed - using default");
|
2016-03-02 20:37:48 +03:00
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = MultiByteToWideChar(CP_UTF8, 0, dtz->DaylightName, -1, tz->DaylightName,
|
2018-10-24 18:40:05 +03:00
|
|
|
sizeof(tz->DaylightName) / sizeof(WCHAR) - 1);
|
|
|
|
|
2016-03-02 20:37:48 +03:00
|
|
|
if (status < 1)
|
|
|
|
{
|
2016-03-10 23:10:49 +03:00
|
|
|
WLog_ERR(TAG, "DaylightName conversion failed - using default");
|
2016-03-02 20:37:48 +03:00
|
|
|
goto out_error;
|
|
|
|
}
|
2016-02-23 20:08:18 +03:00
|
|
|
|
|
|
|
if ((dtz->SupportsDST) && (dtz->RuleTableCount > 0))
|
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
const TIME_ZONE_RULE_ENTRY* rule = winpr_get_current_time_zone_rule(dtz->RuleTable,
|
|
|
|
dtz->RuleTableCount);
|
2016-02-23 20:08:18 +03:00
|
|
|
|
|
|
|
if (rule != NULL)
|
|
|
|
{
|
|
|
|
tz->DaylightBias = -rule->DaylightDelta;
|
|
|
|
tz->StandardDate = rule->StandardDate;
|
|
|
|
tz->DaylightDate = rule->DaylightDate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
free(dtz);
|
2016-02-23 20:08:18 +03:00
|
|
|
/* 1 ... TIME_ZONE_ID_STANDARD
|
|
|
|
* 2 ... TIME_ZONE_ID_DAYLIGHT */
|
2016-02-24 11:43:53 +03:00
|
|
|
return local_time->tm_isdst ? 2 : 1;
|
2016-02-23 20:08:18 +03:00
|
|
|
}
|
2016-05-12 11:01:30 +03:00
|
|
|
|
|
|
|
/* could not detect timezone, use computed bias from tm_gmtoff */
|
2016-12-14 00:47:08 +03:00
|
|
|
WLog_DBG(TAG, "tz not found, using computed bias %"PRId32".", tz->Bias);
|
2016-03-02 20:37:48 +03:00
|
|
|
out_error:
|
2016-05-12 11:01:30 +03:00
|
|
|
free(dtz);
|
|
|
|
memcpy(tz->StandardName, L"Client Local Time", sizeof(tz->StandardName));
|
|
|
|
memcpy(tz->DaylightName, L"Client Local Time", sizeof(tz->DaylightName));
|
|
|
|
return 0; /* TIME_ZONE_ID_UNKNOWN */
|
2014-05-29 19:58:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL SetTimeZoneInformation(const TIME_ZONE_INFORMATION* lpTimeZoneInformation)
|
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpTimeZoneInformation);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL SystemTimeToFileTime(const SYSTEMTIME* lpSystemTime, LPFILETIME lpFileTime)
|
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpSystemTime);
|
|
|
|
WINPR_UNUSED(lpFileTime);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
BOOL FileTimeToSystemTime(const FILETIME* lpFileTime, LPSYSTEMTIME lpSystemTime)
|
2014-05-29 19:58:53 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpFileTime);
|
|
|
|
WINPR_UNUSED(lpSystemTime);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL SystemTimeToTzSpecificLocalTime(LPTIME_ZONE_INFORMATION lpTimeZone,
|
2018-10-24 18:40:05 +03:00
|
|
|
LPSYSTEMTIME lpUniversalTime, LPSYSTEMTIME lpLocalTime)
|
2014-05-29 19:58:53 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpTimeZone);
|
|
|
|
WINPR_UNUSED(lpUniversalTime);
|
|
|
|
WINPR_UNUSED(lpLocalTime);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL TzSpecificLocalTimeToSystemTime(LPTIME_ZONE_INFORMATION lpTimeZoneInformation,
|
2018-10-24 18:40:05 +03:00
|
|
|
LPSYSTEMTIME lpLocalTime, LPSYSTEMTIME lpUniversalTime)
|
2014-05-29 19:58:53 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpTimeZoneInformation);
|
|
|
|
WINPR_UNUSED(lpLocalTime);
|
|
|
|
WINPR_UNUSED(lpUniversalTime);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-06-11 00:40:58 +04:00
|
|
|
/*
|
|
|
|
* GetDynamicTimeZoneInformation is provided by the SDK if _WIN32_WINNT >= 0x0600 in SDKs above 7.1A
|
|
|
|
* and incorrectly if _WIN32_WINNT >= 0x0501 in older SDKs
|
|
|
|
*/
|
2014-06-07 21:11:32 +04:00
|
|
|
#if !defined(_WIN32) || (defined(_WIN32) && (defined(NTDDI_WIN8) && _WIN32_WINNT < 0x0600 || !defined(NTDDI_WIN8) && _WIN32_WINNT < 0x0501)) /* Windows Vista */
|
2014-05-29 19:58:53 +04:00
|
|
|
|
|
|
|
DWORD GetDynamicTimeZoneInformation(PDYNAMIC_TIME_ZONE_INFORMATION pTimeZoneInformation)
|
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(pTimeZoneInformation);
|
2014-05-29 19:58:53 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL SetDynamicTimeZoneInformation(const DYNAMIC_TIME_ZONE_INFORMATION* lpTimeZoneInformation)
|
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpTimeZoneInformation);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
BOOL GetTimeZoneInformationForYear(USHORT wYear, PDYNAMIC_TIME_ZONE_INFORMATION pdtzi,
|
|
|
|
LPTIME_ZONE_INFORMATION ptzi)
|
2014-05-29 19:58:53 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(wYear);
|
|
|
|
WINPR_UNUSED(pdtzi);
|
|
|
|
WINPR_UNUSED(ptzi);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_WIN32) || (defined(_WIN32) && (_WIN32_WINNT < 0x0601)) /* Windows 7 */
|
|
|
|
|
|
|
|
BOOL SystemTimeToTzSpecificLocalTimeEx(const DYNAMIC_TIME_ZONE_INFORMATION* lpTimeZoneInformation,
|
2018-10-24 18:40:05 +03:00
|
|
|
const SYSTEMTIME* lpUniversalTime, LPSYSTEMTIME lpLocalTime)
|
2014-05-29 19:58:53 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpTimeZoneInformation);
|
|
|
|
WINPR_UNUSED(lpUniversalTime);
|
|
|
|
WINPR_UNUSED(lpLocalTime);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL TzSpecificLocalTimeToSystemTimeEx(const DYNAMIC_TIME_ZONE_INFORMATION* lpTimeZoneInformation,
|
2018-10-24 18:40:05 +03:00
|
|
|
const SYSTEMTIME* lpLocalTime, LPSYSTEMTIME lpUniversalTime)
|
2014-05-29 19:58:53 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpTimeZoneInformation);
|
|
|
|
WINPR_UNUSED(lpLocalTime);
|
|
|
|
WINPR_UNUSED(lpUniversalTime);
|
2014-05-29 19:58:53 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_WIN32) || (defined(_WIN32) && (_WIN32_WINNT < 0x0602)) /* Windows 8 */
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
DWORD EnumDynamicTimeZoneInformation(const DWORD dwIndex,
|
|
|
|
PDYNAMIC_TIME_ZONE_INFORMATION lpTimeZoneInformation)
|
2014-05-29 19:58:53 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(dwIndex);
|
|
|
|
WINPR_UNUSED(lpTimeZoneInformation);
|
2014-05-29 19:58:53 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:40:05 +03:00
|
|
|
DWORD GetDynamicTimeZoneInformationEffectiveYears(const PDYNAMIC_TIME_ZONE_INFORMATION
|
|
|
|
lpTimeZoneInformation,
|
|
|
|
LPDWORD FirstYear, LPDWORD LastYear)
|
2014-05-10 06:44:19 +04:00
|
|
|
{
|
2018-10-24 18:40:05 +03:00
|
|
|
WINPR_UNUSED(lpTimeZoneInformation);
|
|
|
|
WINPR_UNUSED(FirstYear);
|
|
|
|
WINPR_UNUSED(LastYear);
|
2014-05-29 19:58:53 +04:00
|
|
|
return 0;
|
2014-05-10 06:44:19 +04:00
|
|
|
}
|
2012-09-20 05:42:46 +04:00
|
|
|
|
|
|
|
#endif
|