Commit 54c414d9 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

kernelbase: Quiet a noisy fixme in QuirkIsEnabled3.

parent eee8131d
......@@ -80,6 +80,10 @@ LONG WINAPI AppPolicyGetWindowingModel(HANDLE token, AppPolicyWindowingModel *po
*/
BOOL WINAPI QuirkIsEnabled3(void *unk1, void *unk2)
{
FIXME("(%p, %p) stub!\n", unk1, unk2);
static int once;
if (!once++)
FIXME("(%p, %p) stub!\n", unk1, unk2);
return FALSE;
}
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