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.

16 lines
570 B

  1. //
  2. // Copyright(c) Microsoft Corp., 1993
  3. //
  4. //
  5. // prtdefs.h - common defines between print spooler and print monitor
  6. //
  7. // Do not put out ^D as part of the header. Do support old style as well
  8. #define FILTERCONTROL_OLD "%!PS-Adobe-3.0\r\n\04\r\n%% LanMan: Filter turned off\r\n"
  9. #define FILTERCONTROL "%!PS-Adobe-3.0\r\n%Windows NT MacPrint Server\r\n"
  10. #define SIZE_FC sizeof(FILTERCONTROL) - 1
  11. #define SIZE_FCOLD sizeof(FILTERCONTROL_OLD) - 1
  12. #define LFILTERCONTROL L"job=sfm"
  13. #define LSIZE_FC ((sizeof(LFILTERCONTROL)/sizeof(WCHAR)) - 1)
  14. 
  15.