SystemTimeToFileTime function kernel32

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

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

BOOL SystemTimeToFileTime(
  const SYSTEMTIME *lpSystemTime,
  LPFILETIME       lpFileTime
);

Implementation

int SystemTimeToFileTime(
        Pointer<SYSTEMTIME> lpSystemTime, Pointer<FILETIME> lpFileTime) =>
    _SystemTimeToFileTime(lpSystemTime, lpFileTime);