mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
rename NtGdiGetClipBox to NtGdiGetAppClipBox
svn path=/trunk/; revision=30272
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user