mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
[APPWIZ] Implement InstallCallback_GetBindInfo (#5480)
- Fix errors on 2nd stage setup epilogue. - Just return E_NOTIMPL in InstallCallback_GetBindInfo function. That's Okay. CORE-15786
This commit is contained in:
parent
fe440f7514
commit
5965c10f96
1 changed files with 1 additions and 3 deletions
|
@ -321,9 +321,7 @@ static HRESULT WINAPI InstallCallback_OnStopBinding(IBindStatusCallback *iface,
|
|||
static HRESULT WINAPI InstallCallback_GetBindInfo(IBindStatusCallback *iface,
|
||||
DWORD* grfBINDF, BINDINFO* pbindinfo)
|
||||
{
|
||||
/* FIXME */
|
||||
*grfBINDF = 0;
|
||||
return S_OK;
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI InstallCallback_OnDataAvailable(IBindStatusCallback *iface, DWORD grfBSCF,
|
||||
|
|
Loading…
Reference in a new issue