Commit 226a5019 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

Quiet two noisy FIXME's.

parent 4a88562e
......@@ -750,6 +750,9 @@ INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCS
*/
ULONG WINAPI DdQueryDisplaySettingsUniqueness(VOID)
{
FIXME("stub\n");
static int warn_once;
if (!warn_once++)
FIXME("stub\n");
return 0;
}
......@@ -444,7 +444,10 @@ PVOID WINAPI RtlInitializeGenericTable(PVOID pTable, PVOID arg2, PVOID arg3, PVO
*/
PVOID RtlEnumerateGenericTableWithoutSplaying(PVOID pTable, PVOID *RestartKey)
{
FIXME("(%p,%p) stub!\n", pTable, RestartKey);
static int warn_once;
if (!warn_once++)
FIXME("(%p,%p) stub!\n", pTable, RestartKey);
return NULL;
}
......
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