Revert r20367 and r20368 since they crash the GUI in second boot by hitting a assert...
[reactos.git] / reactos / include / win32k / print.h
diff --git a/reactos/include/win32k/print.h b/reactos/include/win32k/print.h
new file mode 100644 (file)
index 0000000..9dab57f
--- /dev/null
@@ -0,0 +1,48 @@
+
+#ifndef __WIN32K_PRINT_H
+#define __WIN32K_PRINT_H
+
+INT
+STDCALL
+NtGdiAbortDoc(HDC  hDC);
+
+INT
+STDCALL
+NtGdiEndDoc(HDC  hDC);
+
+INT
+STDCALL
+NtGdiEndPage(HDC  hDC);
+
+INT
+STDCALL
+NtGdiEscape(HDC  hDC,
+                INT  Escape,
+                INT  InSize,
+                LPCSTR  InData,
+                LPVOID  OutData);
+
+INT
+STDCALL
+NtGdiExtEscape(HDC  hDC,
+                   INT  Escape,
+                   INT  InSize,
+                   LPCSTR  InData,
+                   INT  OutSize,
+                   LPSTR  OutData);
+
+INT
+STDCALL
+NtGdiSetAbortProc(HDC  hDC,
+                      ABORTPROC  AbortProc);
+
+INT
+STDCALL
+NtGdiStartDoc(HDC  hDC,
+                  CONST LPDOCINFOW  di);
+
+INT
+STDCALL
+NtGdiStartPage(HDC  hDC);
+
+#endif