FileTimeToSystemTime function kernel32

int FileTimeToSystemTime(
  1. Pointer<FILETIME> lpFileTime,
  2. Pointer<SYSTEMTIME> lpSystemTime
)

Converts a file time to system time format. System time is based on Coordinated Universal Time (UTC).

BOOL FileTimeToSystemTime(
  const FILETIME *lpFileTime,
  LPSYSTEMTIME   lpSystemTime
);

Implementation

int FileTimeToSystemTime(
        Pointer<FILETIME> lpFileTime, Pointer<SYSTEMTIME> lpSystemTime) =>
    _FileTimeToSystemTime(lpFileTime, lpSystemTime);