update for HEAD-2003091401
[reactos.git] / subsys / win32k / objects / print.c
1 /*
2  *  ReactOS W32 Subsystem
3  *  Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$ */
20 #undef WIN32_LEAN_AND_MEAN
21 #include <windows.h>
22 #include <ddk/ntddk.h>
23 #include <win32k/print.h>
24
25 #define NDEBUG
26 #include <win32k/debug1.h>
27
28 INT
29 STDCALL
30 NtGdiAbortDoc(HDC  hDC)
31 {
32   UNIMPLEMENTED;
33 }
34
35 INT
36 STDCALL
37 NtGdiEndDoc(HDC  hDC)
38 {
39   UNIMPLEMENTED;
40 }
41
42 INT
43 STDCALL
44 NtGdiEndPage(HDC  hDC)
45 {
46   UNIMPLEMENTED;
47 }
48
49 INT
50 STDCALL
51 NtGdiEscape(HDC  hDC,
52                 INT  Escape,
53                 INT  InSize,
54                 LPCSTR  InData,
55                 LPVOID  OutData)
56 {
57   UNIMPLEMENTED;
58 }
59
60 INT
61 STDCALL
62 NtGdiExtEscape(HDC  hDC,
63                    INT  Escape,
64                    INT  InSize,
65                    LPCSTR  InData,
66                    INT  OutSize,
67                    LPSTR  OutData)
68 {
69   UNIMPLEMENTED;
70 }
71
72 INT
73 STDCALL
74 NtGdiSetAbortProc(HDC  hDC,
75                       ABORTPROC  AbortProc)
76 {
77   UNIMPLEMENTED;
78 }
79
80 INT
81 STDCALL
82 NtGdiStartDoc(HDC  hDC,
83                   CONST PDOCINFOW  di)
84 {
85   UNIMPLEMENTED;
86 }
87
88 INT
89 STDCALL
90 NtGdiStartPage(HDC  hDC)
91 {
92   UNIMPLEMENTED;
93 }
94 /* EOF */