Hans Leidekker : qmgr: Improve a couple of stubs.

Alexandre Julliard julliard at winehq.org
Wed Jan 7 10:57:25 CST 2009


Module: wine
Branch: master
Commit: 0184dea2d4f4d32de6b397be686e416e8aef2f47
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0184dea2d4f4d32de6b397be686e416e8aef2f47

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Wed Jan  7 13:22:19 2009 +0100

qmgr: Improve a couple of stubs.

---

 dlls/qmgr/job.c |   18 ++++++++++--------
 1 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/dlls/qmgr/job.c b/dlls/qmgr/job.c
index 871f14c..a82b39f 100644
--- a/dlls/qmgr/job.c
+++ b/dlls/qmgr/job.c
@@ -382,32 +382,34 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetMinimumRetryDelay(
     IBackgroundCopyJob2 *iface,
     ULONG Seconds)
 {
-    FIXME("Not implemented\n");
-    return E_NOTIMPL;
+    FIXME("%u\n", Seconds);
+    return S_OK;
 }
 
 static HRESULT WINAPI BITS_IBackgroundCopyJob_GetMinimumRetryDelay(
     IBackgroundCopyJob2 *iface,
     ULONG *Seconds)
 {
-    FIXME("Not implemented\n");
-    return E_NOTIMPL;
+    FIXME("%p\n", Seconds);
+    *Seconds = 30;
+    return S_OK;
 }
 
 static HRESULT WINAPI BITS_IBackgroundCopyJob_SetNoProgressTimeout(
     IBackgroundCopyJob2 *iface,
     ULONG Seconds)
 {
-    FIXME("Not implemented\n");
-    return E_NOTIMPL;
+    FIXME("%u\n", Seconds);
+    return S_OK;
 }
 
 static HRESULT WINAPI BITS_IBackgroundCopyJob_GetNoProgressTimeout(
     IBackgroundCopyJob2 *iface,
     ULONG *Seconds)
 {
-    FIXME("Not implemented\n");
-    return E_NOTIMPL;
+    FIXME("%p\n", Seconds);
+    *Seconds = 900;
+    return S_OK;
 }
 
 static HRESULT WINAPI BITS_IBackgroundCopyJob_GetErrorCount(




More information about the wine-cvs mailing list