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.

52 lines
866 B

  1. /*++
  2. Copyright (c) 1996 - 1999 Microsoft Corporation
  3. Module Name:
  4. helper.h
  5. Abstract:
  6. Helper functions header file
  7. Environment:
  8. Windows NT printer drivers
  9. Revision History:
  10. --*/
  11. #define FLAG_INIPROCESS_UPGRADE 0x0001
  12. VOID
  13. VFreeParserInfo(
  14. IN PPARSERINFO pParserInfo
  15. );
  16. PUIINFO
  17. PGetUIInfo(
  18. IN HANDLE hPrinter,
  19. IN PRAWBINARYDATA pRawData,
  20. IN POPTSELECT pCombineOptions,
  21. IN POPTSELECT pOptions,
  22. OUT PPARSERINFO pParserInfo,
  23. OUT PDWORD pdwFeatureCount
  24. );
  25. //
  26. // Process OEM plugin configuration file and
  27. // save the resulting information into registry
  28. //
  29. BOOL
  30. BProcessPrinterIniFile(
  31. HANDLE hPrinter,
  32. PDRIVER_INFO_3 pDriverInfo3,
  33. PTSTR *ppParsedData,
  34. DWORD dwFlags
  35. );