Merge pull request #2044 from est31/fix-win

Complete fix for windows compilability
This commit is contained in:
Juan Linietsky 2015-06-07 11:25:14 -03:00
commit 798b55df30
2 changed files with 4 additions and 2 deletions

View File

@ -1863,9 +1863,10 @@ OS::Time OS_Windows::get_time(bool utc) const {
OS::TimeZoneInfo OS_Windows::get_time_zone_info() const {
TIME_ZONE_INFORMATION info;
bool daylight = false;
if (GetTimeZoneInformation(info) == TIME_ZONE_ID_DAYLIGHT)
if (GetTimeZoneInformation(&info) == TIME_ZONE_ID_DAYLIGHT)
daylight = true;
TimeZoneInfo ret;
if (daylight) {
ret.name = info.DaylightName;
} else {

View File

@ -476,9 +476,10 @@ OS::Time OSWinrt::get_time(bool utc) const {
OS::TimeZoneInfo OS_Windows::get_time_zone_info() const {
TIME_ZONE_INFORMATION info;
bool daylight = false;
if (GetTimeZoneInformation(info) == TIME_ZONE_ID_DAYLIGHT)
if (GetTimeZoneInformation(&info) == TIME_ZONE_ID_DAYLIGHT)
daylight = true;
TimeZoneInfo ret;
if (daylight) {
ret.name = info.DaylightName;
} else {