| 179 | } |
| 180 | |
| 181 | FILETIME FileTimeToLocalFileTime(const FILETIME& ft) |
| 182 | { |
| 183 | ThrowIfZero(ft); |
| 184 | FILETIME ftLocal; |
| 185 | if (!::FileTimeToLocalFileTime(&ft, &ftLocal)) |
| 186 | ThrowLastError("FileTimeToLocalFileTime"); |
| 187 | return ftLocal; |
| 188 | } |
| 189 | |
| 190 | FILETIME LocalFileTimeToFileTime(const FILETIME& ftLocal) |
| 191 | { |
no test coverage detected