mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 08:52:57 +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
|
STDCALL
|
||||||
GetCharABCWidthsFloatW(HDC hdc,UINT FirstChar,UINT LastChar,LPABCFLOAT abcF)
|
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,
|
UINT iLastChar,
|
||||||
PFLOAT pxBuffer)
|
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 ??? */
|
/* 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);
|
DPRINT1("GCABCWFA iFirstChar %x\n",iFirstChar);
|
||||||
|
|
||||||
/* FIXME what to do with iFirstChar and iLastChar ??? */
|
/* 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,
|
UINT LastChar,
|
||||||
LPABC abc);
|
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. */
|
/* Use NtGdiGetAppClipBox. */
|
||||||
int
|
int
|
||||||
STDCALL
|
STDCALL
|
||||||
|
|
|
@ -2251,28 +2251,21 @@ NtGdiGetCharABCWidths(HDC hDC,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
STDCALL
|
STDCALL
|
||||||
NtGdiGetCharABCWidthsFloat(HDC hDC,
|
NtGdiGetCharABCWidthsW(
|
||||||
UINT FirstChar,
|
IN HDC hdc,
|
||||||
UINT LastChar,
|
IN UINT wchFirst,
|
||||||
LPABCFLOAT abcF)
|
IN ULONG cwch,
|
||||||
{
|
IN OPTIONAL PWCHAR pwch,
|
||||||
UNIMPLEMENTED;
|
IN FLONG fl,
|
||||||
return FALSE;
|
OUT PVOID pvBuf)
|
||||||
}
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
DWORD
|
return FALSE;
|
||||||
STDCALL
|
|
||||||
NtGdiGetCharacterPlacement(HDC hDC,
|
|
||||||
LPCWSTR String,
|
|
||||||
int Count,
|
|
||||||
int MaxExtent,
|
|
||||||
LPGCP_RESULTSW Results,
|
|
||||||
DWORD Flags)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
|
@ -2372,17 +2365,6 @@ NtGdiGetCharWidth32(HDC hDC,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL
|
|
||||||
STDCALL
|
|
||||||
NtGdiGetCharWidthFloat(HDC hDC,
|
|
||||||
UINT FirstChar,
|
|
||||||
UINT LastChar,
|
|
||||||
PFLOAT Buffer)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
DWORD
|
DWORD
|
||||||
STDCALL
|
STDCALL
|
||||||
NtGdiGetFontLanguageInfo(HDC hDC)
|
NtGdiGetFontLanguageInfo(HDC hDC)
|
||||||
|
|
|
@ -2475,23 +2475,6 @@ NtGdiGetAppClipBox(
|
||||||
return 0;
|
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
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -748,10 +748,7 @@ NtGdiGetBkColor 1
|
||||||
NtGdiGetBkMode 1
|
NtGdiGetBkMode 1
|
||||||
NtGdiGetBrushOrgEx 2
|
NtGdiGetBrushOrgEx 2
|
||||||
NtGdiGetCharABCWidths 4
|
NtGdiGetCharABCWidths 4
|
||||||
NtGdiGetCharABCWidthsFloat 4
|
|
||||||
NtGdiGetCharacterPlacement 6
|
|
||||||
NtGdiGetCharWidth32 4
|
NtGdiGetCharWidth32 4
|
||||||
NtGdiGetCharWidthFloat 4
|
|
||||||
NtGdiGetClipBox 2
|
NtGdiGetClipBox 2
|
||||||
NtGdiGetColorSpace 1
|
NtGdiGetColorSpace 1
|
||||||
NtGdiGetCurrentPositionEx 2
|
NtGdiGetCurrentPositionEx 2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue