Commit 7d696911 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

dwmapi: Silence a fixme.

parent 6cd1076f
......@@ -112,7 +112,9 @@ HRESULT WINAPI DwmFlush(void)
*/
HRESULT WINAPI DwmSetWindowAttribute(HWND hwnd, DWORD attributenum, LPCVOID attribute, DWORD size)
{
FIXME("(%p, %x, %p, %x) stub\n", hwnd, attributenum, attribute, size);
static BOOL once;
if (!once++) FIXME("(%p, %x, %p, %x) stub\n", hwnd, attributenum, attribute, size);
return E_NOTIMPL;
}
......
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