update for HEAD-2003091401
[reactos.git] / lib / gdi32 / objects / brush.c
1 #ifdef UNICODE
2 #undef UNICODE
3 #endif
4
5 #undef WIN32_LEAN_AND_MEAN
6 #include <windows.h>
7 #include <ddk/ntddk.h>
8 #include <win32k/kapi.h>
9
10
11 /*
12  * @implemented
13  */
14 HBRUSH
15 STDCALL
16 CreateSolidBrush(
17         COLORREF        a0
18         )
19 {
20         return NtGdiCreateSolidBrush(a0);
21 }
22
23 /*
24  * @implemented
25  */
26 HBRUSH
27 STDCALL
28 CreateBrushIndirect(
29         CONST LOGBRUSH  *a0
30         )
31 {
32         return NtGdiCreateBrushIndirect(a0);
33 }
34
35 /*
36  * @implemented
37  */
38 HBRUSH
39 STDCALL
40 CreateDIBPatternBrushPt(
41         CONST VOID              *a0,
42         UINT                    a1
43         )
44 {
45         return NtGdiCreateDIBPatternBrushPt(a0,a1);
46 }
47
48 /*
49  * @implemented
50  */
51 HBRUSH
52 STDCALL
53 CreateHatchBrush(
54         int             a0,
55         COLORREF        a1
56         )
57 {
58         return NtGdiCreateHatchBrush(a0,a1);
59 }