mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 20:41:59 +00:00
rename NtGdiGetClipBox to NtGdiGetAppClipBox
svn path=/trunk/; revision=30272
This commit is contained in:
parent
d86ceec6a5
commit
f76e81e2f4
5 changed files with 4 additions and 27 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -210,14 +210,6 @@ NtGdiGetCharABCWidths(HDC hDC,
|
|||
UINT LastChar,
|
||||
LPABC abc);
|
||||
|
||||
/* Use NtGdiGetAppClipBox. */
|
||||
int
|
||||
STDCALL
|
||||
NtGdiGetClipBox (
|
||||
HDC hDC,
|
||||
LPRECT rc
|
||||
);
|
||||
|
||||
/* Use NtGdiGetColorSpaceforBitmap. */
|
||||
HCOLORSPACE
|
||||
STDCALL
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -2462,19 +2462,6 @@ NtGdiFullscreenControl(
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
INT
|
||||
STDCALL
|
||||
NtGdiGetAppClipBox(
|
||||
IN HDC hdc,
|
||||
OUT LPRECT prc)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -746,7 +746,6 @@ NtGdiGdiComment 3
|
|||
NtGdiGetAspectRatioFilterEx 2
|
||||
NtGdiGetBkColor 1
|
||||
NtGdiGetBkMode 1
|
||||
NtGdiGetClipBox 2
|
||||
NtGdiGetColorSpace 1
|
||||
NtGdiGetCurrentPositionEx 2
|
||||
NtGdiGetEnhMetaFile 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue