[Bug 7833] MS Money 2006 trial aborts on startup, as it calls the unimplemented function shlwapi.dll.SHSetTimerQueueTimer

Wine Bugs wine-bugs at winehq.org
Fri May 18 19:47:22 CDT 2007


http://bugs.winehq.org/show_bug.cgi?id=7833





------- Additional Comments From ncliang at gmail.com  2007-18-05 19:47 -------
My bad, you are right, the handle hNewTimer should be created here and a pointer
passed into CreateTimerQueueTimer. How about: 

--
HANDLE hNewTimer = NULL;
...
CreateTimerQueueTimer(&hNewTimer, ...);
return hNewTimer;
--

This avoids possibly returning an uninitialized HANDLE since the stub
CreateTimerQueueTimer returns TRUE all the time. Of course, this should not be
the case when CreateTimerQueueTimer is actually implemented, but unfortunately,
that might take some time... 

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list