From e30d86c4d007a83d1b2349f6d65d07c6d7e918ce Mon Sep 17 00:00:00 2001 From: shunf4 Date: Fri, 10 May 2024 16:15:29 +0800 Subject: [PATCH] fix: missing soleFolderIndex arg in IFolder::CopyTo --- CPP/7zip/UI/FileManager/IFolder.h | 1 + 1 file changed, 1 insertion(+) diff --git a/CPP/7zip/UI/FileManager/IFolder.h b/CPP/7zip/UI/FileManager/IFolder.h index c5cff06e..ef9c0b6f 100644 --- a/CPP/7zip/UI/FileManager/IFolder.h +++ b/CPP/7zip/UI/FileManager/IFolder.h @@ -80,6 +80,7 @@ FOLDER_INTERFACE_SUB(IFolderOperationsExtractCallback, IProgress, 0x0B) STDMETHOD(Delete)(const UInt32 *indices, UInt32 numItems, IProgress *progress) x; \ STDMETHOD(CopyTo)(Int32 moveMode, const UInt32 *indices, UInt32 numItems, \ Int32 includeAltStreams, Int32 replaceAltStreamCharsMode, \ + Int64 soleFolderIndex, \ const wchar_t *path, IFolderOperationsExtractCallback *callback) x; \ STDMETHOD(CopyFrom)(Int32 moveMode, const wchar_t *fromFolderPath, \ const wchar_t * const *itemsPaths, UInt32 numItems, IProgress *progress) x; \