MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / TFileTimeToDateTime

Function TFileTimeToDateTime

sourcecommon/utils.cpp:1398–1401  ·  view source on GitHub ↗

������������ FILETIME TDateTimeToFileTime(TDateTime t) { SYSTEMTIME st; FILETIME local_ft, ft; DateTimeToSystemTime(t, st); SystemTimeToFileTime(&st, &local_ft); LocalFileTimeToFileTime(&local_ft, &ft); // local -> UTC return ft; } */ ---------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1396*/
1397//---------------------------------------------------------------------------
1398double TFileTimeToDateTime(ULONGLONG t)
1399{
1400 return (double)(t - cDelphiTime) / (double)T_ONEDAY;
1401}
1402//---------------------------------------------------------------------------
1403int iscodedelim(char c)
1404{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected