user32: Fix a noisy FIXME.

oldstable
Dimitrie O. Paun 2008-09-28 14:47:07 -04:00 committed by Alexandre Julliard
parent 8b3c63dce6
commit e209932069
1 changed files with 7 additions and 1 deletions

View File

@ -444,7 +444,13 @@ INT WINAPI LoadStringA( HINSTANCE instance, UINT resource_id, LPSTR buffer, INT
*/
DWORD WINAPI GetGuiResources( HANDLE hProcess, DWORD uiFlags )
{
FIXME("(%p,%x): stub\n",hProcess,uiFlags);
static BOOL warn = TRUE;
if (warn) {
FIXME("(%p,%x): stub\n",hProcess,uiFlags);
warn = FALSE;
}
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return 0;
}