rename NtGdiGetClipBox to NtGdiGetAppClipBox

svn path=/trunk/; revision=30272
This commit is contained in:
Timo Kreuzer 2007-11-08 14:29:31 +00:00
parent d86ceec6a5
commit f76e81e2f4
5 changed files with 4 additions and 27 deletions

View file

@ -2399,7 +2399,7 @@ GetClipBox(HDC hdc,
LPRECT lprc)
{
/* FIXME some part need be done in user mode */
return NtGdiGetClipBox(hdc, lprc);
return NtGdiGetAppClipBox(hdc, lprc);
}
/*

View file

@ -210,14 +210,6 @@ NtGdiGetCharABCWidths(HDC hDC,
UINT LastChar,
LPABC abc);
/* Use NtGdiGetAppClipBox. */
int
STDCALL
NtGdiGetClipBox (
HDC hDC,
LPRECT rc
);
/* Use NtGdiGetColorSpaceforBitmap. */
HCOLORSPACE
STDCALL

View file

@ -196,10 +196,10 @@ IntGdiGetClipBox(HDC hDC, LPRECT rc)
return retval;
}
int STDCALL NtGdiGetClipBox(HDC hDC,
LPRECT rc)
INT STDCALL
NtGdiGetAppClipBox(HDC hDC, LPRECT rc)
{
int Ret;
INT Ret;
NTSTATUS Status = STATUS_SUCCESS;
RECT Saferect;
@ -220,7 +220,6 @@ int STDCALL NtGdiGetClipBox(HDC hDC,
if(!NT_SUCCESS(Status))
{
SetLastNtError(Status);
return ERROR;
}

View file

@ -2462,19 +2462,6 @@ NtGdiFullscreenControl(
return FALSE;
}
/*
* @unimplemented
*/
INT
STDCALL
NtGdiGetAppClipBox(
IN HDC hdc,
OUT LPRECT prc)
{
UNIMPLEMENTED;
return 0;
}
/*
* @unimplemented
*/

View file

@ -746,7 +746,6 @@ NtGdiGdiComment 3
NtGdiGetAspectRatioFilterEx 2
NtGdiGetBkColor 1
NtGdiGetBkMode 1
NtGdiGetClipBox 2
NtGdiGetColorSpace 1
NtGdiGetCurrentPositionEx 2
NtGdiGetEnhMetaFile 1