summaryrefslogtreecommitdiff
path: root/src/core/file_sys/vfs.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-09-19 21:55:47 -0400
committerGravatar Zach Hilman2018-09-21 19:53:05 -0400
commitf68e324672ba93cf932e64a05cbdad871cb6e235 (patch)
treee7944cc071d4655c8dfd48050b262620812a90f3 /src/core/file_sys/vfs.h
parentvfs: Add GetEntries method (diff)
downloadyuzu-f68e324672ba93cf932e64a05cbdad871cb6e235.tar.gz
yuzu-f68e324672ba93cf932e64a05cbdad871cb6e235.tar.xz
yuzu-f68e324672ba93cf932e64a05cbdad871cb6e235.zip
vfs: Add and rewite VfsRawCopy functions
Diffstat (limited to 'src/core/file_sys/vfs.h')
-rw-r--r--src/core/file_sys/vfs.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h
index 828e87f38..6aec4c164 100644
--- a/src/core/file_sys/vfs.h
+++ b/src/core/file_sys/vfs.h
@@ -316,12 +316,14 @@ public:
316}; 316};
317 317
318// Compare the two files, byte-for-byte, in increments specificed by block_size 318// Compare the two files, byte-for-byte, in increments specificed by block_size
319bool DeepEquals(const VirtualFile& file1, const VirtualFile& file2, std::size_t block_size = 0x200); 319bool DeepEquals(const VirtualFile& file1, const VirtualFile& file2, size_t block_size = 0x1000);
320 320
321// A method that copies the raw data between two different implementations of VirtualFile. If you 321// A method that copies the raw data between two different implementations of VirtualFile. If you
322// are using the same implementation, it is probably better to use the Copy method in the parent 322// are using the same implementation, it is probably better to use the Copy method in the parent
323// directory of src/dest. 323// directory of src/dest.
324bool VfsRawCopy(VirtualFile src, VirtualFile dest); 324bool VfsRawCopy(const VirtualFile& src, const VirtualFile& dest, size_t block_size = 0x1000);
325
326bool VfsRawCopyD(const VirtualDir& src, const VirtualDir& dest, size_t block_size = 0x1000);
325 327
326// Checks if the directory at path relative to rel exists. If it does, returns that. If it does not 328// Checks if the directory at path relative to rel exists. If it does, returns that. If it does not
327// it attempts to create it and returns the new dir or nullptr on failure. 329// it attempts to create it and returns the new dir or nullptr on failure.