mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
implement RemoveFontMemResourceEx (left todo fix it in win32k)
svn path=/trunk/; revision=28768
This commit is contained in:
parent
ef2cee7158
commit
9c2159e7f6
1 changed files with 13 additions and 7 deletions
|
@ -1621,17 +1621,23 @@ QueryFontAssocStatus(VOID)
|
|||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
RemoveFontMemResourceEx(
|
||||
HANDLE fh
|
||||
)
|
||||
RemoveFontMemResourceEx(HANDLE fh)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
BOOL retValue=0;
|
||||
|
||||
if (fh)
|
||||
{
|
||||
retValue = NtGdiRemoveFontMemResourceEx(fh);
|
||||
}
|
||||
else
|
||||
{
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
}
|
||||
return retValue;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue