Commit 21f5afa6 authored by Kovács András's avatar Kovács András Committed by Alexandre Julliard

dwmapi: Add DwmEnableComposition stub.

parent d6d0239f
100 stub @
101 stub @
102 stub DwmEnableComposition
102 stdcall DwmEnableComposition (long)
103 stub @
104 stub @
105 stub @
......
......@@ -59,3 +59,13 @@ HRESULT WINAPI DwmIsCompositionEnabled(BOOL *enabled)
*enabled = FALSE;
return S_OK;
}
/**********************************************************************
* DwmEnableComposition (DWMAPI.102)
*/
HRESULT WINAPI DwmEnableComposition(UINT uCompositionAction)
{
FIXME("(%d) stub\n", uCompositionAction);
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