http://bugs.winehq.org/show_bug.cgi?id=2730
Summary: SignalObjectAndWait didnot work Product: Wine Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-binary AssignedTo: wine-bugs@winehq.org ReportedBy: fw@vdb.de
Using SignalObjectAndWait didnot work, using Singlefunctions it works
Example:
try
error = SignalObjectAndWait( mutexhandle, eventhandle, timeout, true );
Errormessage:
fixme:sync:SignalObjectAndWait( 0x88 0x84 500 1) : stub (N-Times)
replace with
ReleaseMutex( mutexhandle ); error = WaitForSingleObject( eventhandle, timeout );
(not really the same)
work