dwmapi: Silence a fixme.

oldstable
Hans Leidekker 2014-01-28 13:24:47 +01:00 committed by Alexandre Julliard
parent 6cd1076f61
commit 7d696911b2
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}