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.

123 lines
3.5 KiB

  1. ;//+-------------------------------------------------------------------------
  2. ;//
  3. ;// Microsoft Windows
  4. ;// Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. ;//
  6. ;// File: messages.mc
  7. ;//
  8. ;// Contents: Main message file
  9. ;//
  10. ;// History: dd-mmm-yy Author Comment
  11. ;// 23-Apr-96 BruceFo Added to dfs setup
  12. ;//
  13. ;// Notes:
  14. ;// A .mc file is compiled by the MC tool to generate a .h file and
  15. ;// a .rc (resource compiler script) file.
  16. ;//
  17. ;// Comments in .mc files start with a ";".
  18. ;// Comment lines are generated directly in the .h file, without
  19. ;// the leading ";"
  20. ;//
  21. ;// See mc.hlp for more help on .mc files and the MC tool.
  22. ;//
  23. ;//--------------------------------------------------------------------------
  24. ;#ifndef __MESSAGES_H__
  25. ;#define __MESSAGES_H__
  26. MessageIdTypedef=HRESULT
  27. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  28. CoError=0x2:STATUS_SEVERITY_COERROR
  29. )
  30. ;#ifdef FACILITY_NULL
  31. ;#undef FACILITY_NULL
  32. ;#endif
  33. ;#ifdef FACILITY_RPC
  34. ;#undef FACILITY_RPC
  35. ;#endif
  36. ;#ifdef FACILITY_DISPATCH
  37. ;#undef FACILITY_DISPATCH
  38. ;#endif
  39. ;#ifdef FACILITY_STORAGE
  40. ;#undef FACILITY_STORAGE
  41. ;#endif
  42. ;#ifdef FACILITY_ITF
  43. ;#undef FACILITY_ITF
  44. ;#endif
  45. ;#ifdef FACILITY_WIN32
  46. ;#undef FACILITY_WIN32
  47. ;#endif
  48. ;#ifdef FACILITY_WINDOWS
  49. ;#undef FACILITY_WINDOWS
  50. ;#endif
  51. FacilityNames=(Null=0x0:FACILITY_NULL
  52. Rpc=0x1:FACILITY_RPC
  53. Dispatch=0x2:FACILITY_DISPATCH
  54. Storage=0x3:FACILITY_STORAGE
  55. Interface=0x4:FACILITY_ITF
  56. Win32=0x7:FACILITY_WIN32
  57. Windows=0x8:FACILITY_WINDOWS
  58. )
  59. ;//////////////////////////////////////////////////////////////////////////
  60. ;//
  61. ;// Messages. Note that we use "severity=success" for everything, since no
  62. ;// error codes are actually getting returned to anyone. We're only using
  63. ;// the message file for FormatMessage().
  64. ;//
  65. ;//////////////////////////////////////////////////////////////////////////
  66. MessageId=0x100 Facility=Null Severity=Success SymbolicName=MSG_BROWSE
  67. Language=English
  68. Select the folder you wish to share.
  69. .
  70. MessageId= Facility=Null Severity=Success SymbolicName=MSG_NONTSHRUI
  71. Language=English
  72. Couldn't load ntshrui.dll.
  73. .
  74. MessageId= Facility=Null Severity=Success SymbolicName=MSG_NOSERVER
  75. Language=English
  76. Unable to enumerate shares. Check to make sure the server is running.
  77. .
  78. MessageId= Facility=Null Severity=Success SymbolicName=MSG_NODIRECTORY
  79. Language=English
  80. The directory specified, %1!s!, doesn't exist. Do you want to create it?
  81. .
  82. MessageId= Facility=Null Severity=Success SymbolicName=MSG_ILLEGAL_DIRECTORY
  83. Language=English
  84. The directory specified, %1!s!, is either not a local directory or can't otherwise be shared. Please enter a local, shareable, fully-qualified directory.
  85. .
  86. MessageId= Facility=Null Severity=Success SymbolicName=MSG_NOT_A_DIRECTORY
  87. Language=English
  88. The path specified, %1!s!, exists but is not a directory. Please enter a new path.
  89. .
  90. MessageId= Facility=Null Severity=Success SymbolicName=MSG_FILEATTRIBSFAIL
  91. Language=English
  92. Error examining directory %1!s!.
  93. .
  94. MessageId= Facility=Null Severity=Success SymbolicName=MSG_COULDNT_CREATE_DIRECTORY
  95. Language=English
  96. Could not create directory %1.
  97. .
  98. MessageId= Facility=Null Severity=Success SymbolicName=MSG_DFS_DESCRIPTION
  99. Language=English
  100. Manages logical volumes distributed across a local or wide area network.
  101. .
  102. MessageId= Facility=Null Severity=Success SymbolicName=MSG_DFS_COMPONENT_NAME
  103. Language=English
  104. Distributed File System
  105. .
  106. ;#endif // __MESSAGES_H__