fix: SoleFolderIndex: continue fixing method decl/impl

This commit is contained in:
shunf4
2024-05-10 19:50:32 +08:00
parent 726f47563e
commit 92304fbc6a

View File

@@ -688,11 +688,13 @@ STDMETHODIMP CExtractCallbackImp::CryptoGetTextPassword(BSTR *password)
STDMETHODIMP CExtractCallbackImp::SetSoleFolderIndex(Int64 soleFolderIndex) STDMETHODIMP CExtractCallbackImp::SetSoleFolderIndex(Int64 soleFolderIndex)
{ {
this->SoleFolderIndex = soleFolderIndex; this->SoleFolderIndex = soleFolderIndex;
return S_OK;
} }
STDMETHODIMP CExtractCallbackImp::GetSoleFolderIndex(Int64 *pSoleFolderIndex) STDMETHODIMP CExtractCallbackImp::GetSoleFolderIndex(Int64 *pSoleFolderIndex)
{ {
(*pSoleFolderIndex) = this->SoleFolderIndex; (*pSoleFolderIndex) = this->SoleFolderIndex;
return S_OK;
} }
STDMETHODIMP CExtractCallbackImp::AskWrite( STDMETHODIMP CExtractCallbackImp::AskWrite(