dwmapi: Silence a noisy fixme.
This commit is contained in:
parent
945588a302
commit
b184b13c5f
|
@ -54,7 +54,14 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI DwmIsCompositionEnabled(BOOL *enabled)
|
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;
|
*enabled = FALSE;
|
||||||
return S_OK;
|
return S_OK;
|
||||||
|
|
Loading…
Reference in New Issue