Quiet two noisy FIXME's.

oldstable
Louis Lenders 2010-03-26 10:33:21 +01:00 committed by Alexandre Julliard
parent 4a88562ec7
commit 226a5019e7
2 changed files with 8 additions and 2 deletions

View File

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

View File

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