:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / gdi32 / objects / pen.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 HPEN
11 STDCALL
12 CreatePen(INT PenStyle, INT Width, COLORREF Color)
13 {
14    return W32kCreatePen(PenStyle, Width, Color);
15 }
16
17 HPEN
18 STDCALL
19 CreatePenIndirect(CONST LOGPEN *lgpn)
20 {
21    return W32kCreatePenIndirect((CONST PLOGPEN)lgpn);
22 }
23 /*
24 VOID STDCALL
25 DumpGdiObjects( INT process )
26 {
27         W32kDumpGdiObjects( process );
28 }
29 */