branch update for HEAD-2003091401
[reactos.git] / lib / gdi32 / objects / brush.c
index 29f663d..63cebca 100644 (file)
@@ -8,11 +8,52 @@
 #include <win32k/kapi.h>
 
 
+/*
+ * @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);
 }