:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[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 HBRUSH
12 STDCALL
13 CreateSolidBrush(
14         COLORREF        a0
15         )
16 {
17         return W32kCreateSolidBrush(a0);
18 }