update for HEAD-2003091401
[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
11 /*
12  * @implemented
13  */
14 HPEN
15 STDCALL
16 CreatePen(INT PenStyle, INT Width, COLORREF Color)
17 {
18    return NtGdiCreatePen(PenStyle, Width, Color);
19 }
20
21
22 /*
23  * @implemented
24  */
25 HPEN
26 STDCALL
27 CreatePenIndirect(CONST LOGPEN *lgpn)
28 {
29    return NtGdiCreatePenIndirect((CONST PLOGPEN)lgpn);
30 }