dwmapi: Silence a noisy fixme.
This commit is contained in:
parent
945588a302
commit
b184b13c5f
|
@ -53,8 +53,15 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
|||
* DwmIsCompositionEnabled (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmIsCompositionEnabled(BOOL *enabled)
|
||||
{
|
||||
static int once;
|
||||
if (!once)
|
||||
{
|
||||
FIXME("%p\n", enabled);
|
||||
once = 1;
|
||||
}
|
||||
else
|
||||
TRACE("%p\n", enabled);
|
||||
|
||||
*enabled = FALSE;
|
||||
return S_OK;
|
||||
|
|
Loading…
Reference in New Issue