mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
- Removed NtGdiGetCharWidthFloat, NtGdiGetCharABCWidthsFloat and NtGdiGetCharacterPlacement. Update all related items.
svn path=/trunk/; revision=30234
This commit is contained in:
parent
e9648e85b4
commit
c8c186109e
6 changed files with 19 additions and 83 deletions
|
@ -2401,8 +2401,8 @@ BOOL
|
|||
STDCALL
|
||||
GetCharABCWidthsFloatW(HDC hdc,UINT FirstChar,UINT LastChar,LPABCFLOAT abcF)
|
||||
{
|
||||
/* FIXME some part are done in user mode */
|
||||
return NtGdiGetCharABCWidthsFloat(hdc, FirstChar, LastChar, abcF);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -2456,8 +2456,8 @@ GetCharWidthFloatW(HDC hdc,
|
|||
UINT iLastChar,
|
||||
PFLOAT pxBuffer)
|
||||
{
|
||||
/* FIXME some part need be done in user mode */
|
||||
return NtGdiGetCharWidthFloat(hdc, iFirstChar, iLastChar, pxBuffer);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -596,7 +596,7 @@ GetCharWidthFloatA(
|
|||
)
|
||||
{
|
||||
/* FIXME what to do with iFirstChar and iLastChar ??? */
|
||||
return NtGdiGetCharWidthFloat ( hdc, iFirstChar, iLastChar, pxBuffer );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
|
@ -633,7 +633,7 @@ GetCharABCWidthsFloatA(
|
|||
DPRINT1("GCABCWFA iFirstChar %x\n",iFirstChar);
|
||||
|
||||
/* FIXME what to do with iFirstChar and iLastChar ??? */
|
||||
return NtGdiGetCharABCWidthsFloat ( hdc, iFirstChar, iLastChar, lpABCF );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -222,32 +222,6 @@ NtGdiGetCharABCWidths(HDC hDC,
|
|||
UINT LastChar,
|
||||
LPABC abc);
|
||||
|
||||
/* Should be done in user mode. */
|
||||
BOOL
|
||||
STDCALL
|
||||
NtGdiGetCharABCWidthsFloat(HDC hDC,
|
||||
UINT FirstChar,
|
||||
UINT LastChar,
|
||||
LPABCFLOAT abcF);
|
||||
|
||||
/* Should be done in user mode. */
|
||||
DWORD
|
||||
STDCALL
|
||||
NtGdiGetCharacterPlacement(HDC hDC,
|
||||
LPCWSTR String,
|
||||
int Count,
|
||||
int MaxExtent,
|
||||
LPGCP_RESULTSW Results,
|
||||
DWORD Flags);
|
||||
|
||||
/* Should be done in user mode. */
|
||||
BOOL
|
||||
STDCALL
|
||||
NtGdiGetCharWidthFloat(HDC hDC,
|
||||
UINT FirstChar,
|
||||
UINT LastChar,
|
||||
PFLOAT Buffer);
|
||||
|
||||
/* Use NtGdiGetAppClipBox. */
|
||||
int
|
||||
STDCALL
|
||||
|
|
|
@ -2251,28 +2251,21 @@ NtGdiGetCharABCWidths(HDC hDC,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
NtGdiGetCharABCWidthsFloat(HDC hDC,
|
||||
UINT FirstChar,
|
||||
UINT LastChar,
|
||||
LPABCFLOAT abcF)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
DWORD
|
||||
STDCALL
|
||||
NtGdiGetCharacterPlacement(HDC hDC,
|
||||
LPCWSTR String,
|
||||
int Count,
|
||||
int MaxExtent,
|
||||
LPGCP_RESULTSW Results,
|
||||
DWORD Flags)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
NtGdiGetCharABCWidthsW(
|
||||
IN HDC hdc,
|
||||
IN UINT wchFirst,
|
||||
IN ULONG cwch,
|
||||
IN OPTIONAL PWCHAR pwch,
|
||||
IN FLONG fl,
|
||||
OUT PVOID pvBuf)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL
|
||||
|
@ -2372,17 +2365,6 @@ NtGdiGetCharWidth32(HDC hDC,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
NtGdiGetCharWidthFloat(HDC hDC,
|
||||
UINT FirstChar,
|
||||
UINT LastChar,
|
||||
PFLOAT Buffer)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
DWORD
|
||||
STDCALL
|
||||
NtGdiGetFontLanguageInfo(HDC hDC)
|
||||
|
|
|
@ -2475,23 +2475,6 @@ NtGdiGetAppClipBox(
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
NtGdiGetCharABCWidthsW(
|
||||
IN HDC hdc,
|
||||
IN UINT wchFirst,
|
||||
IN ULONG cwch,
|
||||
IN OPTIONAL PWCHAR pwch,
|
||||
IN FLONG fl,
|
||||
OUT PVOID pvBuf)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -748,10 +748,7 @@ NtGdiGetBkColor 1
|
|||
NtGdiGetBkMode 1
|
||||
NtGdiGetBrushOrgEx 2
|
||||
NtGdiGetCharABCWidths 4
|
||||
NtGdiGetCharABCWidthsFloat 4
|
||||
NtGdiGetCharacterPlacement 6
|
||||
NtGdiGetCharWidth32 4
|
||||
NtGdiGetCharWidthFloat 4
|
||||
NtGdiGetClipBox 2
|
||||
NtGdiGetColorSpace 1
|
||||
NtGdiGetCurrentPositionEx 2
|
||||
|
|
Loading…
Reference in a new issue