| 1382 | #if defined(Q_OS_WIN) |
| 1383 | |
| 1384 | static long RoundUpToPowerOf2(long originalValue, long roundingMultiplePowerOf2) |
| 1385 | { |
| 1386 | long mask = roundingMultiplePowerOf2 - 1; |
| 1387 | return (originalValue + mask) & ~mask; |
| 1388 | } |
| 1389 | |
| 1390 | bool win_ioctl_clone(const std::wstring& src_path, const std::wstring& dst_path, std::error_code& ec) |
| 1391 | { |