diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-02-10 19:06:49 -0800 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-20 14:56:32 -0700 |
commit | 7870cf28e55c090543591304b05a7ef5031e1157 (patch) | |
tree | 07b84a6489e5ab057397b6bc7336c73546551614 /launcher/FileSystem.h | |
parent | 9939367db7568249efd47701105323a4801a9413 (diff) | |
download | PrismLauncher-7870cf28e55c090543591304b05a7ef5031e1157.tar.gz PrismLauncher-7870cf28e55c090543591304b05a7ef5031e1157.tar.bz2 PrismLauncher-7870cf28e55c090543591304b05a7ef5031e1157.zip |
fix: add missing mingw defs
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/FileSystem.h')
-rw-r--r-- | launcher/FileSystem.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/launcher/FileSystem.h b/launcher/FileSystem.h index 4c011309..cafbd2a8 100644 --- a/launcher/FileSystem.h +++ b/launcher/FileSystem.h @@ -498,10 +498,6 @@ bool clone_file(const QString& src, const QString& dst, std::error_code& ec); #if defined(Q_OS_WIN) -#ifndef FSCTL_DUPLICATE_EXTENTS_TO_FILE -#define FSCTL_DUPLICATE_EXTENTS_TO_FILE CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 209, METHOD_BUFFERED, FILE_WRITE_DATA ) -#endif - bool winbtrfs_clone(const std::wstring& src_path, const std::wstring& dst_path, std::error_code& ec); bool refs_clone(const std::wstring& src_path, const std::wstring& dst_path, std::error_code& ec); bool ioctl_clone(const std::wstring& src_path, const std::wstring& dst_path, std::error_code& ec); |