Added little prog. that builds the WIN32K.SYS service table
[reactos.git] / reactos / subsys / win32k / objects / print.c
1
2
3 #undef WIN32_LEAN_AND_MEAN
4 #include <windows.h>
5 #include <ddk/ntddk.h>
6 #include <win32k/print.h>
7
8 // #define NDEBUG
9 #include <internal/debug.h>
10
11 INT
12 STDCALL
13 W32kAbortDoc(HDC hDC)
14 {
15 UNIMPLEMENTED;
16 }
17
18 INT
19 STDCALL
20 W32kEndDoc(HDC hDC)
21 {
22 UNIMPLEMENTED;
23 }
24
25 INT
26 STDCALL
27 W32kEndPage(HDC hDC)
28 {
29 UNIMPLEMENTED;
30 }
31
32 INT
33 STDCALL
34 W32kEscape(HDC hDC,
35 INT Escape,
36 INT InSize,
37 LPCSTR InData,
38 LPVOID OutData)
39 {
40 UNIMPLEMENTED;
41 }
42
43 INT
44 STDCALL
45 W32kExtEscape(HDC hDC,
46 INT Escape,
47 INT InSize,
48 LPCSTR InData,
49 INT OutSize,
50 LPSTR OutData)
51 {
52 UNIMPLEMENTED;
53 }
54
55 INT
56 STDCALL
57 W32kSetAbortProc(HDC hDC,
58 ABORTPROC AbortProc)
59 {
60 UNIMPLEMENTED;
61 }
62
63 INT
64 STDCALL
65 W32kStartDoc(HDC hDC,
66 CONST PDOCINFO di)
67 {
68 UNIMPLEMENTED;
69 }
70
71 INT
72 STDCALL
73 W32kStartPage(HDC hDC)
74 {
75 UNIMPLEMENTED;
76 }
77