mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added brush scaffolding
svn path=/trunk/; revision=577
This commit is contained in:
parent
9162781f47
commit
5050cf437e
2 changed files with 83 additions and 0 deletions
22
reactos/include/win32k/brush.h
Normal file
22
reactos/include/win32k/brush.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
HBRUSH W32kCreateBrushIndirect(CONST LOGBRUSH *lb);
|
||||
HBRUSH W32kCreateDIBPatternBrush(HGLOBAL hDIBPacked,
|
||||
UINT ColorSpec);
|
||||
HBRUSH W32kCreateDIBPatternBrushPt(CONST VOID *PackedDIB,
|
||||
UINT Usage);
|
||||
HBRUSH W32kCreateHatchBrush(INT Style,
|
||||
COLORREF Color);
|
||||
HBRUSH W32kCreatePatternBrush(HBITMAP hBitmap);
|
||||
HBRUSH W32kCreateSolidBrush(COLORREF Color);
|
||||
BOOL W32kFixBrushOrgEx(VOID);
|
||||
BOOL W32kPatBlt(HDC hDC,
|
||||
INT XLeft,
|
||||
INT YLeft,
|
||||
INT Width,
|
||||
INT Height,
|
||||
DWORD ROP);
|
||||
BOOL W32kSetBrushOrgEx(HDC hDC,
|
||||
INT XOrg,
|
||||
INT YOrg,
|
||||
LPPOINT Point);
|
||||
|
61
reactos/subsys/win32k/objects/brush.c
Normal file
61
reactos/subsys/win32k/objects/brush.c
Normal file
|
@ -0,0 +1,61 @@
|
|||
|
||||
|
||||
#include <win32k/brush.h>
|
||||
|
||||
HBRUSH W32kCreateBrushIndirect(CONST LOGBRUSH *lb)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
HBRUSH W32kCreateDIBPatternBrush(HGLOBAL hDIBPacked,
|
||||
UINT ColorSpec)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
HBRUSH W32kCreateDIBPatternBrushPt(CONST VOID *PackedDIB,
|
||||
UINT Usage)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
HBRUSH W32kCreateHatchBrush(INT Style,
|
||||
COLORREF Color)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
HBRUSH W32kCreatePatternBrush(HBITMAP hBitmap)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
HBRUSH W32kCreateSolidBrush(COLORREF Color)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
BOOL W32kFixBrushOrgEx(VOID)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL W32kPatBlt(HDC hDC,
|
||||
INT XLeft,
|
||||
INT YLeft,
|
||||
INT Width,
|
||||
INT Height,
|
||||
DWORD ROP)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
BOOL W32kSetBrushOrgEx(HDC hDC,
|
||||
INT XOrg,
|
||||
INT YOrg,
|
||||
LPPOINT Point)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in a new issue