mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 18:11:37 -06:00
fix: compile error, using another way to pass down SoleFolderIndex
This commit is contained in:
@@ -685,6 +685,16 @@ STDMETHODIMP CExtractCallbackImp::CryptoGetTextPassword(BSTR *password)
|
||||
|
||||
#ifndef _SFX
|
||||
|
||||
STDMETHODIMP CExtractCallbackImp::SetSoleFolderIndex(Int64 soleFolderIndex)
|
||||
{
|
||||
this->SoleFolderIndex = soleFolderIndex;
|
||||
}
|
||||
|
||||
STDMETHODIMP CExtractCallbackImp::GetSoleFolderIndex(Int64 *pSoleFolderIndex)
|
||||
{
|
||||
(*pSoleFolderIndex) = this->SoleFolderIndex;
|
||||
}
|
||||
|
||||
STDMETHODIMP CExtractCallbackImp::AskWrite(
|
||||
const wchar_t *srcPath, Int32 srcIsFolder,
|
||||
const FILETIME *srcTime, const UInt64 *srcSize,
|
||||
|
||||
Reference in New Issue
Block a user