implement RemoveFontMemResourceEx (left todo fix it in win32k)

svn path=/trunk/; revision=28768
This commit is contained in:
Magnus Olsen 2007-09-02 12:18:34 +00:00
parent ef2cee7158
commit 9c2159e7f6

View file

@ -1621,17 +1621,23 @@ QueryFontAssocStatus(VOID)
} }
/* /*
* @unimplemented * @implemented
*/ */
BOOL BOOL
STDCALL STDCALL
RemoveFontMemResourceEx( RemoveFontMemResourceEx(HANDLE fh)
HANDLE fh
)
{ {
UNIMPLEMENTED; BOOL retValue=0;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0; if (fh)
{
retValue = NtGdiRemoveFontMemResourceEx(fh);
}
else
{
SetLastError(ERROR_INVALID_PARAMETER);
}
return retValue;
} }
/* /*