Convert to Delphi TDateTime time format to GMT time

From , 4 Years ago, written in Delphi (Object Pascal), viewed 51 times.
URL https://pastebin.vip/view/cf5ff72c
  1. function GMTToLocalTime(GMTTime: TDateTime): TDateTime;
  2. var
  3.   GMTST: Windows.TSystemTime;
  4.   LocalST: Windows.TSystemTime;
  5. begin
  6.   SysUtils.DateTimeToSystemTime(GMTTime, GMTST);
  7.   SysUtils.Win32Check(
  8.     Windows.SystemTimeToTzSpecificLocalTime(
  9.       nil, GMTST, LocalST
  10.     )
  11.   );
  12.   Result := SysUtils.SystemTimeToDateTime(LocalST);
  13. end;
  14. //delphi/2171

Reply to "Convert to Delphi TDateTime time format to GMT time"

Here you can reply to the paste above

captcha

https://burned.cc - Burn After Reading Website