mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 04:11:37 -06:00
fix: SoleFolderIndex: continue fixing method decl/impl
This commit is contained in:
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user