X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fgdi32%2Fobjects%2Fbrush.c;fp=lib%2Fgdi32%2Fobjects%2Fbrush.c;h=63cebcaf172cfc10e7637bbc8512e0cf603d8abb;hp=29f663d47aa8df56440fe2a6c0436b7434cd54e4;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/gdi32/objects/brush.c b/lib/gdi32/objects/brush.c index 29f663d..63cebca 100644 --- a/lib/gdi32/objects/brush.c +++ b/lib/gdi32/objects/brush.c @@ -8,11 +8,52 @@ #include +/* + * @implemented + */ HBRUSH STDCALL CreateSolidBrush( COLORREF a0 ) { - return W32kCreateSolidBrush(a0); + return NtGdiCreateSolidBrush(a0); +} + +/* + * @implemented + */ +HBRUSH +STDCALL +CreateBrushIndirect( + CONST LOGBRUSH *a0 + ) +{ + return NtGdiCreateBrushIndirect(a0); +} + +/* + * @implemented + */ +HBRUSH +STDCALL +CreateDIBPatternBrushPt( + CONST VOID *a0, + UINT a1 + ) +{ + return NtGdiCreateDIBPatternBrushPt(a0,a1); +} + +/* + * @implemented + */ +HBRUSH +STDCALL +CreateHatchBrush( + int a0, + COLORREF a1 + ) +{ + return NtGdiCreateHatchBrush(a0,a1); }