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.

86 lines
2.4 KiB

  1. ;//+----------------------------------------------------------------------------
  2. ;//
  3. ;// Copyright (C) 1997, Microsoft Corporation
  4. ;//
  5. ;// File: imsg.mc
  6. ;//
  7. ;// Contents: Events and Errors for IMsg
  8. ;//
  9. ;// Classes: None
  10. ;//
  11. ;// Functions: None
  12. ;//
  13. ;// History: November 5, 1997 - Milans, Created
  14. ;//
  15. ;//-----------------------------------------------------------------------------
  16. ;#ifndef _IMSGERR_H_
  17. ;#define _IMSGERR_H_
  18. ;
  19. SeverityNames=(Success=0x0
  20. Informational=0x1
  21. Warning=0x2
  22. Error=0x3
  23. )
  24. FacilityNames=(Interface=0x4)
  25. Messageid=100 Facility=Interface Severity=Error SymbolicName=IMSG_E_INITFAILED
  26. Language=English
  27. Method call on IMsg instance failed because the instance could not be initialized.
  28. .
  29. Messageid=101 Facility=Interface Severity=Error SymbolicName=IMSG_E_DELETED
  30. Language=English
  31. Method call on IMsg instance failed because this IMsg instance has been deleted.
  32. .
  33. Messageid=103 Facility=Interface Severity=Error SymbolicName=IMSG_E_INVALIDPARAMETER
  34. Language=English
  35. Method call on IMsg instance failed because of an invalid parameter to the method
  36. .
  37. Messageid=104 Facility=Interface Severity=Error SymbolicName=IMSG_E_CONTENTALREADYEXISTS
  38. Language=English
  39. An attempt was made to set the content file on IMsg instance which already has a content file.
  40. .
  41. Messageid=105 Facility=Interface Severity=Error SymbolicName=IMSG_E_PROPNOTFOUND
  42. Language=English
  43. Property %1 has not been set on this IMsg instance.
  44. .
  45. Messageid=106 Facility=Interface Severity=Error SymbolicName=IMSG_E_PROPWRITE
  46. Language=English
  47. An error occured while setting the %1 property.
  48. .
  49. Messageid=107 Facility=Interface Severity=Error SymbolicName=IMSG_E_PROPREAD
  50. Language=English
  51. An error occured while reading the %1 property.
  52. .
  53. Messageid=108 Facility=Interface Severity=Error SymbolicName=IMSG_E_RECIPIENTNOTFOUND
  54. Language=English
  55. The specified recipient index is out of range.
  56. .
  57. Messageid=109 Facility=Interface Severity=Error SymbolicName=IMSG_E_DOMAINNOTFOUND
  58. Language=English
  59. The specified recipient index is out of range.
  60. .
  61. Messageid=110 Facility=Interface Severity=Error SymbolicName=IMSG_E_TYPEERROR
  62. Language=English
  63. The specified property does not have the expected type
  64. .
  65. Messageid=111 Facility=Interface Severity=Error SymbolicName=IMSG_E_MOREDATA
  66. Language=English
  67. The specified property is larger than the data buffer
  68. .
  69. ;
  70. ;#endif _IMSGERR_H_
  71. ;