22 Mar
2023
22 Mar
'23
5:29 p.m.
Alex Henrie (@alexhenrie) commented about dlls/dwmapi/dwmapi_main.c:
}
+/********************************************************************** + * DwmFlush (DWMAPI.@) + */ +HRESULT WINAPI DwmFlush(void) +{ + LARGE_INTEGER qpf, qpc, delay; + LONG64 qpc_refresh_period; + int display_frequency; + static BOOL once; + + if (!once++) + FIXME("() stub\n"); + else + TRACE(".\n"); It doesn't matter much, but why print "." here instead of "()"?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2463#note_27540