Commit b184b13c authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

dwmapi: Silence a noisy fixme.

parent 945588a3
......@@ -54,7 +54,14 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
*/
HRESULT WINAPI DwmIsCompositionEnabled(BOOL *enabled)
{
FIXME("%p\n", enabled);
static int once;
if (!once)
{
FIXME("%p\n", enabled);
once = 1;
}
else
TRACE("%p\n", enabled);
*enabled = FALSE;
return S_OK;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment