GetTimeZoneInformationForYear method

int GetTimeZoneInformationForYear(
  1. int wYear,
  2. Pointer<PDYNAMIC_TIME_ZONE_INFORMATION> pdtzi,
  3. Pointer<LPTIME_ZONE_INFORMATION> ptzi
)

Implementation

int GetTimeZoneInformationForYear(
  int wYear,
  ffi.Pointer<PDYNAMIC_TIME_ZONE_INFORMATION> pdtzi,
  ffi.Pointer<LPTIME_ZONE_INFORMATION> ptzi,
) {
  return (_GetTimeZoneInformationForYear ??= _dylib.lookupFunction<
      _c_GetTimeZoneInformationForYear,
      _dart_GetTimeZoneInformationForYear>('GetTimeZoneInformationForYear'))(
    wYear,
    pdtzi,
    ptzi,
  );
}