GetDynamicTimeZoneInformationEffectiveYears method

int GetDynamicTimeZoneInformationEffectiveYears(
  1. Pointer<PDYNAMIC_TIME_ZONE_INFORMATION> lpTimeZoneInformation,
  2. Pointer<Uint64> FirstYear,
  3. Pointer<Uint64> LastYear
)

Implementation

int GetDynamicTimeZoneInformationEffectiveYears(
  ffi.Pointer<PDYNAMIC_TIME_ZONE_INFORMATION> lpTimeZoneInformation,
  ffi.Pointer<ffi.Uint64> FirstYear,
  ffi.Pointer<ffi.Uint64> LastYear,
) {
  return (_GetDynamicTimeZoneInformationEffectiveYears ??=
      _dylib.lookupFunction<_c_GetDynamicTimeZoneInformationEffectiveYears,
              _dart_GetDynamicTimeZoneInformationEffectiveYears>(
          'GetDynamicTimeZoneInformationEffectiveYears'))(
    lpTimeZoneInformation,
    FirstYear,
    LastYear,
  );
}