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.

42 lines
746 B

  1. /**************************************************************************\
  2. *
  3. * Copyright (c) 1998 Microsoft Corporation
  4. *
  5. * Module Name:
  6. *
  7. * printer.h
  8. *
  9. * Abstract:
  10. *
  11. * Printer related header inclusions
  12. *
  13. * Revision History:
  14. *
  15. * 6/21/1999 ericvan
  16. * Created it.
  17. *
  18. \**************************************************************************/
  19. #ifndef PRINTER_HPP
  20. #define PRINTER_HPP
  21. #define GDIPLUS_UNI_INIT 4607
  22. #define GDIPLUS_UNI_ESCAPE 4606
  23. typedef struct _GDIPPRINTINIT
  24. {
  25. DWORD dwSize;
  26. ULONG numPalEntries;
  27. ULONG palEntries[256];
  28. BOOL usePal;
  29. DWORD dwMode;
  30. FLONG flRed;
  31. FLONG flGre;
  32. FLONG flBlu;
  33. }
  34. GDIPPRINTINIT, *PGDIPPRINTINIT;
  35. #endif