Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
651 B

  1. /*++
  2. Copyright (c) 1990-2003 Microsoft Corporation
  3. Module Name:
  4. page.h
  5. Abstract:
  6. This module contains prototype and #defines for page.c
  7. Author:
  8. 18-Nov-1993 Thu 04:49:28 created
  9. [Environment:]
  10. GDI Device Driver - Plotter.
  11. [Notes:]
  12. Revision History:
  13. --*/
  14. #ifndef _PLOTPAGE_
  15. #define _PLOTPAGE_
  16. BOOL
  17. DrvStartPage(
  18. SURFOBJ *pso
  19. );
  20. BOOL
  21. DrvSendPage(
  22. SURFOBJ *pso
  23. );
  24. BOOL
  25. DrvStartDoc(
  26. SURFOBJ *pso,
  27. PWSTR pwDocName,
  28. DWORD JobId
  29. );
  30. BOOL
  31. DrvEndDoc(
  32. SURFOBJ *pso,
  33. FLONG Flags
  34. );
  35. #endif // _PLOTPAGE_