Implement getTimezoneOffset for Win32 (#291)

Retrieves the current time zone settings with GetTimeZoneInformation to calculate time zone offset
This commit is contained in:
Aful 2024-03-03 18:23:48 +03:00 committed by GitHub
parent 708dbcbf5b
commit d11f5f600d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,6 +32,9 @@
#include <assert.h>
#if !defined(_MSC_VER)
#include <sys/time.h>
#if defined(_WIN32)
#include <timezoneapi.h>
#endif
#endif
#include <time.h>
#include <fenv.h>
@ -40827,8 +40830,9 @@ static const JSCFunctionListEntry js_math_obj[] = {
between UTC time and local time 'd' in minutes */
static int getTimezoneOffset(int64_t time) {
#if defined(_WIN32)
/* XXX: TODO */
return 0;
TIME_ZONE_INFORMATION time_zone_info;
GetTimeZoneInformation(&time_zone_info);
return (int)time_zone_info.Bias / 60;
#else
time_t ti;
struct tm tm;