mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 04:43:51 +00:00
Removed Ex from NtGdiSetBitmapDimensionEx and NtGdiSetBrushOrgEx.
svn path=/trunk/; revision=28275
This commit is contained in:
parent
08bb46f842
commit
87243c8c1a
5 changed files with 8 additions and 28 deletions
|
@ -532,12 +532,12 @@ SetAbortProc@8
|
||||||
SetArcDirection@8
|
SetArcDirection@8
|
||||||
SetBitmapAttributes@8
|
SetBitmapAttributes@8
|
||||||
SetBitmapBits@12=NtGdiSetBitmapBits@12
|
SetBitmapBits@12=NtGdiSetBitmapBits@12
|
||||||
SetBitmapDimensionEx@16=NtGdiSetBitmapDimensionEx@16
|
SetBitmapDimensionEx@16=NtGdiSetBitmapDimension@16
|
||||||
SetBkColor@8=NtGdiSetBkColor@8
|
SetBkColor@8=NtGdiSetBkColor@8
|
||||||
SetBkMode@8=NtGdiSetBkMode@8
|
SetBkMode@8=NtGdiSetBkMode@8
|
||||||
SetBoundsRect@12
|
SetBoundsRect@12
|
||||||
SetBrushAttributes@8
|
SetBrushAttributes@8
|
||||||
SetBrushOrgEx@16=NtGdiSetBrushOrgEx@16
|
SetBrushOrgEx@16=NtGdiSetBrushOrg@16
|
||||||
SetColorAdjustment@8
|
SetColorAdjustment@8
|
||||||
SetColorSpace@8
|
SetColorSpace@8
|
||||||
SetDCBrushColor@8
|
SetDCBrushColor@8
|
||||||
|
|
|
@ -621,30 +621,12 @@ NtGdiSelectPalette (
|
||||||
BOOL ForceBackground
|
BOOL ForceBackground
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Use NtGdiSetBitmapDimension. */
|
|
||||||
BOOL
|
|
||||||
STDCALL
|
|
||||||
NtGdiSetBitmapDimensionEx (
|
|
||||||
HBITMAP hBitmap,
|
|
||||||
INT Width,
|
|
||||||
INT Height,
|
|
||||||
LPSIZE Size
|
|
||||||
);
|
|
||||||
|
|
||||||
/* Needs to be done in user-mode, using shared GDI Object Attributes. */
|
/* Needs to be done in user-mode, using shared GDI Object Attributes. */
|
||||||
COLORREF STDCALL NtGdiSetBkColor (HDC hDC, COLORREF Color);
|
COLORREF STDCALL NtGdiSetBkColor (HDC hDC, COLORREF Color);
|
||||||
|
|
||||||
/* Needs to be done in user-mode, using shared GDI Object Attributes. */
|
/* Needs to be done in user-mode, using shared GDI Object Attributes. */
|
||||||
INT STDCALL NtGdiSetBkMode(HDC hDC, INT backgroundMode);
|
INT STDCALL NtGdiSetBkMode(HDC hDC, INT backgroundMode);
|
||||||
|
|
||||||
/* Use NtGdiSetBrushOrg. */
|
|
||||||
BOOL STDCALL
|
|
||||||
NtGdiSetBrushOrgEx(
|
|
||||||
HDC hDC,
|
|
||||||
INT XOrg,
|
|
||||||
INT YOrg,
|
|
||||||
LPPOINT Point);
|
|
||||||
|
|
||||||
/* Use NtGdiDoPalette with GdiPalSetColorTable, TRUE. */
|
/* Use NtGdiDoPalette with GdiPalSetColorTable, TRUE. */
|
||||||
UINT
|
UINT
|
||||||
STDCALL
|
STDCALL
|
||||||
|
|
|
@ -1075,7 +1075,7 @@ NtGdiSetBitmapBits(
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL STDCALL
|
BOOL STDCALL
|
||||||
NtGdiSetBitmapDimensionEx(
|
NtGdiSetBitmapDimension(
|
||||||
HBITMAP hBitmap,
|
HBITMAP hBitmap,
|
||||||
INT Width,
|
INT Width,
|
||||||
INT Height,
|
INT Height,
|
||||||
|
|
|
@ -694,9 +694,9 @@ NtGdiCreateSolidBrush(COLORREF Color,
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NtGdiSetBrushOrgEx
|
* NtGdiSetBrushOrg
|
||||||
*
|
*
|
||||||
* The NtGdiSetBrushOrgEx function sets the brush origin that GDI assigns to
|
* The NtGdiSetBrushOrg function sets the brush origin that GDI assigns to
|
||||||
* the next brush an application selects into the specified device context.
|
* the next brush an application selects into the specified device context.
|
||||||
*
|
*
|
||||||
* Status
|
* Status
|
||||||
|
@ -704,7 +704,7 @@ NtGdiCreateSolidBrush(COLORREF Color,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
BOOL STDCALL
|
BOOL STDCALL
|
||||||
NtGdiSetBrushOrgEx(HDC hDC, INT XOrg, INT YOrg, LPPOINT Point)
|
NtGdiSetBrushOrg(HDC hDC, INT XOrg, INT YOrg, LPPOINT Point)
|
||||||
{
|
{
|
||||||
PDC dc = DC_LockDc(hDC);
|
PDC dc = DC_LockDc(hDC);
|
||||||
if (dc == NULL)
|
if (dc == NULL)
|
||||||
|
|
|
@ -270,10 +270,10 @@ NtGdiSelectClipPath 2
|
||||||
# NtGdiSelectPen 2
|
# NtGdiSelectPen 2
|
||||||
# NtGdiSetBitmapAttributes 2
|
# NtGdiSetBitmapAttributes 2
|
||||||
NtGdiSetBitmapBits 3
|
NtGdiSetBitmapBits 3
|
||||||
# NtGdiSetBitmapDimension 4
|
NtGdiSetBitmapDimension 4
|
||||||
NtGdiSetBoundsRect 3
|
NtGdiSetBoundsRect 3
|
||||||
# NtGdiSetBrushAttributes 2
|
# NtGdiSetBrushAttributes 2
|
||||||
# NtGdiSetBrushOrg 4
|
NtGdiSetBrushOrg 4
|
||||||
NtGdiSetColorAdjustment 2
|
NtGdiSetColorAdjustment 2
|
||||||
NtGdiSetColorSpace 2
|
NtGdiSetColorSpace 2
|
||||||
NtGdiSetDeviceGammaRamp 2
|
NtGdiSetDeviceGammaRamp 2
|
||||||
|
@ -694,10 +694,8 @@ NtUserValidateHandleSecure 1
|
||||||
#ReactOS specify syscall
|
#ReactOS specify syscall
|
||||||
NtGdiSelectObject 2
|
NtGdiSelectObject 2
|
||||||
NtGdiSelectPalette 3
|
NtGdiSelectPalette 3
|
||||||
NtGdiSetBitmapDimensionEx 4
|
|
||||||
NtGdiSetBkColor 2
|
NtGdiSetBkColor 2
|
||||||
NtGdiSetBkMode 2
|
NtGdiSetBkMode 2
|
||||||
NtGdiSetBrushOrgEx 4
|
|
||||||
NtGdiSetDIBColorTable 4
|
NtGdiSetDIBColorTable 4
|
||||||
NtGdiSetDIBits 7
|
NtGdiSetDIBits 7
|
||||||
NtGdiSetDIBitsToDevice 12
|
NtGdiSetDIBitsToDevice 12
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue