http://bugs.winehq.org/show_bug.cgi?id=58451
Bug ID: 58451 Summary: rpcrt4: Fix 'FIXME: should use CreateTimerQueueTimer when implemented' Product: Wine Version: unspecified Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: rpc Assignee: wine-bugs@winehq.org Reporter: winehq-bugs_serge_180716@gautherie.fr Distribution: ---
wine-1.1.18 https://gitlab.winehq.org/wine/wine/-/commit/5f6ae94ad0163341c2cd79a89f29b21... added { /* FIXME: should use CreateTimerQueueTimer when implemented */ thread = CreateThread(NULL, 0, rpcrt4_http_timer_thread, timer_data, 0, NULL); }
although CreateTimerQueueTimer() was already implemented, by
wine-1.1.2 https://gitlab.winehq.org/wine/wine/-/commit/d343f2baf76413eb690cbc44a0d56ed... { NTSTATUS status = RtlCreateTimer(phNewTimer, TimerQueue, Callback, Parameter, DueTime, Period, Flags); }
Check and fix that FIXME.