| 188 | } |
| 189 | |
| 190 | FILETIME LocalFileTimeToFileTime(const FILETIME& ftLocal) |
| 191 | { |
| 192 | ThrowIfZero(ftLocal); |
| 193 | FILETIME ft; |
| 194 | if (!::LocalFileTimeToFileTime(&ftLocal, &ft)) |
| 195 | ThrowLastError("LocalFileTimeToFileTime"); |
| 196 | return ft; |
| 197 | } |
| 198 | |
| 199 | SYSTEMTIME FileTimeToSystemTime(const FILETIME& ft) |
| 200 | { |
no test coverage detected