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.

57 lines
1.8 KiB

  1. /*****************************************************************************\
  2. * MODULE: globals.h
  3. *
  4. * Global variables used throughout the library.
  5. *
  6. *
  7. * Copyright (C) 1996-1999 Hewlett Packard Company.
  8. * Copyright (C) 1996-1999 Microsoft Corporation.
  9. *
  10. * History:
  11. * 16-Mar-1999 CHW Created, Localized.
  12. *
  13. \*****************************************************************************/
  14. #include "wpnpin16.h"
  15. // Global variables.
  16. //
  17. HINSTANCE g_hInst;
  18. // Unlocalized strings.
  19. //
  20. char cszDll16 [] = "wpnpin16.dll";
  21. char cszDll32 [] = "wpnpin32.dll";
  22. char cszDataSection [] = "DataSection";
  23. char cszDriverFile [] = "DriverFile";
  24. char cszDataFile [] = "DataFile";
  25. char cszConfigFile [] = "ConfigFile";
  26. char cszHelpFile [] = "HelpFile";
  27. char cszPrintProcessor [] = "PrintProcessor";
  28. char cszDefaultDataType [] = "DefaultDataType";
  29. char cszVendorInstaller [] = "VendorInstaller";
  30. char cszVendorSetup [] = "VendorSetup";
  31. char cszRetryTimeout [] = "RetryTimeout";
  32. char cszNotSelectedTimeout[] = "NotSelectedTimeout";
  33. char cszNoTestPage [] = "NoTestPage";
  34. char cszUniqueID [] = "PrinterID";
  35. char cszMsgSvr [] = SZMESSAGESERVERCLASS;
  36. char cszWinspl16 [] = "winspl16";
  37. char cszBackslash [] = "\\";
  38. char cszComma [] = ",";
  39. char cszSpace [] = " ";
  40. char cszNull [] = "";
  41. // Localized strings from resource.
  42. //
  43. HANDLE hszDefaultPrintProcessor = NULL;
  44. HANDLE hszMSDefaultDataType = NULL;
  45. HANDLE hszDefaultColorPath = NULL;
  46. HANDLE hszFileInUse = NULL;
  47. LPSTR cszDefaultPrintProcessor = NULL;
  48. LPSTR cszMSDefaultDataType = NULL;
  49. LPSTR cszDefaultColorPath = NULL;
  50. LPSTR cszFileInUse = NULL;