update for HEAD-2003091401
[reactos.git] / include / win32k / print.h
1
2 #ifndef __WIN32K_PRINT_H
3 #define __WIN32K_PRINT_H
4
5 INT
6 STDCALL
7 NtGdiAbortDoc(HDC  hDC);
8
9 INT
10 STDCALL
11 NtGdiEndDoc(HDC  hDC);
12
13 INT
14 STDCALL
15 NtGdiEndPage(HDC  hDC);
16
17 INT
18 STDCALL
19 NtGdiEscape(HDC  hDC,
20                 INT  Escape,
21                 INT  InSize,
22                 LPCSTR  InData,
23                 LPVOID  OutData);
24
25 INT
26 STDCALL
27 NtGdiExtEscape(HDC  hDC,
28                    INT  Escape,
29                    INT  InSize,
30                    LPCSTR  InData,
31                    INT  OutSize,
32                    LPSTR  OutData);
33
34 INT
35 STDCALL
36 NtGdiSetAbortProc(HDC  hDC,
37                       ABORTPROC  AbortProc);
38
39 INT
40 STDCALL
41 NtGdiStartDoc(HDC  hDC,
42                   CONST PDOCINFOW  di);
43
44 INT
45 STDCALL
46 NtGdiStartPage(HDC  hDC);
47
48 #endif