| 30 | } |
| 31 | |
| 32 | double GetDifference(FILETIME ft1, FILETIME ft2) |
| 33 | { |
| 34 | return (FileTimeToUInt64(ft2) - FileTimeToUInt64(ft1)) * 100e-9; |
| 35 | } |
| 36 | |
| 37 | // used to create a relative time from the systemtime when only systemtime is stored in Sysinternals DbgView files. |
| 38 | // the reverse (creating system-time from relative times) makes no sense. |
no test coverage detected