Source code of Windows XP (NT5)
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.

51 lines
748 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. All rights reserved
  4. Module Name:
  5. drvsetup.h
  6. Abstract:
  7. This file provides an interface between winspool.drv and ntprint.dll.
  8. Author:
  9. Mark Lawrence (mlawrenc).
  10. Environment:
  11. User Mode -Win32
  12. Revision History:
  13. --*/
  14. #ifndef _DRVSETUP_H_
  15. #define _DRVSETUP_H_
  16. typedef struct
  17. {
  18. HANDLE hLibrary;
  19. pfPSetupShowBlockedDriverUI pfnSetupShowBlockedDriverUI;
  20. } TSetupInterface;
  21. DWORD
  22. InitializeSetupInterface(
  23. IN OUT TSetupInterface *pSetupInterface
  24. );
  25. DWORD
  26. FreeSetupInterface(
  27. IN OUT TSetupInterface *pSetupInterface
  28. );
  29. DWORD
  30. ShowPrintUpgUI(
  31. IN DWORD dwBlockingErrorCode
  32. );
  33. #endif