| 270 | } |
| 271 | |
| 272 | inline Time Win32FileTimeToTime(U32 low,U32 high) |
| 273 | { |
| 274 | // Converts Win32 "file" time, 100 nanosecond intervals since 00:00:00 UTC, January 1, 1601 |
| 275 | S64 t = (((S64)high) << 32) + low; |
| 276 | return Time(t / 100 + TORQUE_CONSTANT_S64(5049120960000000)); |
| 277 | } |
| 278 | |
| 279 | |
| 280 | } // Namespace |
no test coverage detected