mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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
|
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue