dwmapi: Silence a noisy fixme.

This commit is contained in:
Maarten Lankhorst 2010-02-05 11:34:42 +01:00 committed by Alexandre Julliard
parent 945588a302
commit b184b13c5f
1 changed files with 8 additions and 1 deletions

View File

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