Added little prog. that builds the WIN32K.SYS service table
[reactos.git] / reactos / subsys / win32k / objects / pen.c
1
2
3 #undef WIN32_LEAN_AND_MEAN
4 #include <windows.h>
5 #include <ddk/ntddk.h>
6 #include <win32k/pen.h>
7
8 // #define NDEBUG
9 #include <internal/debug.h>
10
11 HPEN
12 STDCALL
13 W32kCreatePen(INT PenStyle,
14 INT Width,
15 COLORREF Color)
16 {
17 UNIMPLEMENTED;
18 }
19
20 HPEN
21 STDCALL
22 W32kCreatePenIndirect(CONST PLOGPEN lgpn)
23 {
24 UNIMPLEMENTED;
25 }
26
27 HPEN
28 STDCALL
29 W32kExtCreatePen(DWORD PenStyle,
30 DWORD Width,
31 CONST PLOGBRUSH lb,
32 DWORD StyleCount,
33 CONST PDWORD Style)
34 {
35 UNIMPLEMENTED;
36 }
37
38
39