Hans Leidekker : sti: Return success from the IStillImageW:: UnregisterLaunchApplication stub.
Module: wine Branch: master Commit: d95d7db7f698cda6e4e8fd5462c048c5003b195f URL: http://source.winehq.org/git/wine.git/?a=commit;h=d95d7db7f698cda6e4e8fd5462... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Mon Oct 12 13:39:54 2009 +0200 sti: Return success from the IStillImageW::UnregisterLaunchApplication stub. --- dlls/sti/sti.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/sti/sti.c b/dlls/sti/sti.c index 129627b..c88205d 100644 --- a/dlls/sti/sti.c +++ b/dlls/sti/sti.c @@ -128,7 +128,7 @@ static HRESULT WINAPI stillimagew_UnregisterLaunchApplication(IStillImageW *ifac { stillimage *This = impl_from_StillImageW(iface); FIXME("(%p, %s): stub\n", This, debugstr_w(pwszAppName)); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI stillimagew_EnableHwNotifications(IStillImageW *iface, LPCWSTR pwszDeviceName,
participants (1)
-
Alexandre Julliard