/*++ Copyright (c) 1997 Microsoft Corporation All rights reserved. Module Name: cstrings.c Abstract: Constant strings Author: Steve Kiraly (SteveKi) 06-Feb-1997 Revision History: --*/ #include "precomp.h" #pragma hdrstop const WCHAR szWindows[] = L"Windows"; const WCHAR szDevices[] = L"Devices"; const WCHAR szDevice[] = L"Device"; const WCHAR szPrinterPorts[] = L"PrinterPorts"; const WCHAR szPrinters[] = L"Printers"; const WCHAR szDeviceOld[] = L"DeviceOld"; const WCHAR szNULL[] = L""; const WCHAR szComma[] = L","; const WCHAR szSlash[] = L"\\"; const WCHAR szFilePort[] = L"FILE:"; const WCHAR szHelpFile[] = L"WINDOWS.HLP"; const WCHAR szNetMsgDll[] = L"NETMSG.DLL"; const WCHAR szPrintUIDll[] = L"PRINTUI.DLL"; const WCHAR cszWin95Environment[] = L"Windows 4.0"; const WCHAR szManifestExtension[] = L"manifest"; const WCHAR gszShell32[] = L"shell32.dll"; const WCHAR cszTrayListenerClassName[] = L"PrintTray_Notify_WndClass"; const WCHAR gszCSRDll[] = L"csrsrv.dll"; const WCHAR gszUserProfileRegPath[] = L"Software\\Microsoft\\Windows NT\\CurrentVersion"; const WCHAR gszRegEnvironments[] = L"System\\CurrentControlSet\\Control\\Print\\Environments"; const WCHAR gszSystem32Spool[] = L"system32\\spool"; const WCHAR gszPrintProcessorsPath[] = L"PRTPROCS"; const WCHAR gszPrinterDriversPath[] = L"DRIVERS"; const WCHAR gszEnivronmentDirectory[] = L"Directory"; const CHAR szCompstuiDll[] = "compstui.dll"; const CHAR szCommonPropertySheetUIW[] = "CommonPropertySheetUIW"; const CHAR szDrvDevPropSheets[] = "DrvDevicePropertySheets"; const CHAR szDrvDocPropSheets[] = "DrvDocumentPropertySheets"; const CHAR szConstructPrinterFriendlyName[] = "ConstructPrinterFriendlyName";