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.

70 lines
895 B

  1. /*++
  2. Copyright (c) 1990-2003 Microsoft Corporation
  3. Module Name:
  4. uituils.h
  5. Abstract:
  6. This module contains the defines for UIUtils.c
  7. Author:
  8. 03-Dec-1993 Fri 21:35:50 created
  9. [Environment:]
  10. GDI Device Driver - Plotter.
  11. [Notes:]
  12. Revision History:
  13. --*/
  14. #ifndef _PRINTER_INFO_
  15. #define _PRINTER_INFO_
  16. #define MPF_DEVICEDATA 0x00000001
  17. #define MPF_HELPFILE 0x00000002
  18. #define MPF_PCPSUI 0x00000004
  19. PPRINTERINFO
  20. MapPrinter(
  21. HANDLE hPrinter,
  22. PPLOTDEVMODE pPlotDMIn,
  23. LPDWORD pdwErrIDS,
  24. DWORD MPFlags
  25. );
  26. VOID
  27. UnMapPrinter(
  28. PPRINTERINFO pPI
  29. );
  30. LPBYTE
  31. GetPrinterInfo(
  32. HANDLE hPrinter,
  33. UINT PrinterInfoLevel
  34. );
  35. DWORD
  36. GetPlotterIconID(
  37. PPRINTERINFO pPI
  38. );
  39. #endif // _PRINTER_INFO_