GetTimeZoneInformation method

int GetTimeZoneInformation(
  1. Pointer<LPTIME_ZONE_INFORMATION> lpTimeZoneInformation
)

Implementation

int GetTimeZoneInformation(
  ffi.Pointer<LPTIME_ZONE_INFORMATION> lpTimeZoneInformation,
) {
  return (_GetTimeZoneInformation ??= _dylib.lookupFunction<
      _c_GetTimeZoneInformation,
      _dart_GetTimeZoneInformation>('GetTimeZoneInformation'))(
    lpTimeZoneInformation,
  );
}