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.

69 lines
2.2 KiB

  1. /*****************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1991 **/
  4. /*****************************************************************/
  5. /*
  6. * strchlit.hxx
  7. * Contains all string and character literal constants used in shell.
  8. *
  9. * History:
  10. * Yi-HsinS 12/30/91 Created
  11. * beng 06-Apr-1992 Removed CXX_PRT_STR (with wsprintf)
  12. * Added PATHSEP_STRING
  13. *
  14. */
  15. #ifndef _STRCHLIT_HXX_
  16. #define _STRCHLIT_HXX_
  17. /*
  18. * Character constants goes here!
  19. */
  20. #define PATH_SEPARATOR TCH('\\')
  21. #define STRING_TERMINATOR TCH('\0')
  22. #define SPACE TCH(' ')
  23. #define COLON TCH(':')
  24. #define READ_CHAR TCH('R')
  25. #define WRITE_CHAR TCH('W')
  26. #define CREATE_CHAR TCH('C')
  27. #define EXEC_CHAR TCH('X')
  28. #define DEL_CHAR TCH('D')
  29. #define ACCESS_CHAR TCH('A')
  30. #define PERM_CHAR TCH('P')
  31. /*
  32. * Strings constants goes here!
  33. */
  34. #define EMPTY_STRING SZ("")
  35. #define SPACE_STRING SZ(" ")
  36. #define SERVER_INIT_STRING SZ("\\\\")
  37. #define DEVICEA_STRING SZ("A:")
  38. #define PATHSEP_STRING SZ("\\")
  39. #define ADMIN_SHARE SZ("ADMIN$")
  40. #define IPC_SHARE SZ("IPC$")
  41. /*
  42. * Manifests used to modify win.ini.
  43. * The following strings originally lives in winlocal.h
  44. */
  45. #define PROFILE_WINDOWS_COMPONENT SZ("windows")
  46. #define PROFILE_SPOOLER_COMPONENT SZ("spooler")
  47. #define PROFILE_NETMESSAGE_PARAMETER SZ("NetMessage")
  48. #define PROFILE_AUTOLOGON_PARAMETER SZ("AutoLogon")
  49. #define PROFILE_UPDATEINTERVAL_PARM SZ("UpdateInterval")
  50. #define PROFILE_LOAD_PARAMETER SZ("Load")
  51. #define PROFILE_RUN_PARAMETER SZ("Run")
  52. #define PROFILE_YES_STRING SZ("Yes")
  53. #define PROFILE_NO_STRING SZ("No")
  54. #define PROFILE_WINPOPUP_STRING SZ("WinPopup")
  55. /*
  56. * This is the network provider name. Initialized during InitWNetEnum.
  57. */
  58. extern const TCHAR * pszNTLanMan ;
  59. #endif