cdoexerr.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:43k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //
  2. //  CDO message file
  3. //
  4. //
  5. // Message categories
  6. //
  7. //
  8. //  Values are 32 bit values layed out as follows:
  9. //
  10. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  11. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  12. //  +---+-+-+-----------------------+-------------------------------+
  13. //  |Sev|C|R|     Facility          |               Code            |
  14. //  +---+-+-+-----------------------+-------------------------------+
  15. //
  16. //  where
  17. //
  18. //      Sev - is the severity code
  19. //
  20. //          00 - Success
  21. //          01 - Informational
  22. //          10 - Warning
  23. //          11 - Error
  24. //
  25. //      C - is the Customer code flag
  26. //
  27. //      R - is a reserved bit
  28. //
  29. //      Facility - is the facility code
  30. //
  31. //      Code - is the facility's status code
  32. //
  33. //
  34. // Define the facility codes
  35. //
  36. //
  37. // Define the severity codes
  38. //
  39. //
  40. // MessageId: categoryHeader
  41. //
  42. // MessageText:
  43. //
  44. //  Header
  45. //
  46. #define categoryHeader                   0x00000001L
  47. //
  48. // MessageId: categoryUnused
  49. //
  50. // MessageText:
  51. //
  52. //  None
  53. //
  54. #define categoryUnused                   0x00000002L
  55. //
  56. // MessageId: categoryGeneral
  57. //
  58. // MessageText:
  59. //
  60. //  General
  61. //
  62. #define categoryGeneral                  0x00000003L
  63. //////////////////////////////////////////////////////////////////////////////
  64. // Error code ranges in FACILITY_ITF. 
  65. // Different libraries sharing the CDO name
  66. // should not conflict in their error codes. Note that below 0x200 is
  67. // reserved by COM.
  68. // 0x200 through 0x5ff    - CDOEX and CDOSYS error codes
  69. // 0x600 through 0x6ff    - workflow error codes
  70. // 0x1000 through 0x1100
  71. // 0x4000 through 0x4100
  72. //
  73. //////////////////////////////////////////////////////////////////////////////
  74. // MessageId Ranges used by the localizer
  75. //
  76. // 1: 0x200 through 0x7ff, 0x4000 through 0x4fff: Library error messages, not localized.
  77. // 2: 0x2000 through 0x2fff: Server error messages, localized in server languages.
  78. // 3: 0x1000 through 0x1fff: Client text, localized in client languages.
  79. //
  80. //////////////////////////////////////////////////////////////////////////////
  81. // Error strings for IErrorInfo
  82. //
  83. // MessageId = 0x200 through 0x7ff or 0x4000 through 0x4fff. Not localized.
  84. //
  85. // 0x200 available - was CDO_E_FAIL
  86. //
  87. // MessageId: CDO_E_UNCAUGHT_EXCEPTION
  88. //
  89. // MessageText:
  90. //
  91. //  Exception %1 was generated at address %2
  92. //
  93. #define CDO_E_UNCAUGHT_EXCEPTION         0x80040201L
  94. // 0x202 was CDO_E_NOT_BOUND, was renamed
  95. //
  96. // MessageId: CDO_E_NOT_OPENED
  97. //
  98. // MessageText:
  99. //
  100. //  No data source has been opened for the object.
  101. //
  102. #define CDO_E_NOT_OPENED                 0x80040202L
  103. //
  104. // MessageId: CDO_E_UNSUPPORTED_DATASOURCE
  105. //
  106. // MessageText:
  107. //
  108. //  The object does not support this type of data source.
  109. //
  110. #define CDO_E_UNSUPPORTED_DATASOURCE     0x80040203L
  111. //
  112. // MessageId: CDO_E_INVALID_PROPERTYNAME
  113. //
  114. // MessageText:
  115. //
  116. //  The object does not support the requested property name or namespace.
  117. //
  118. #define CDO_E_INVALID_PROPERTYNAME       0x80040204L
  119. //
  120. // MessageId: CDO_E_PROP_UNSUPPORTED
  121. //
  122. // MessageText:
  123. //
  124. //  The object does not support the requested property.
  125. //
  126. #define CDO_E_PROP_UNSUPPORTED           0x80040205L
  127. // 0x206 - was CDO_E_NOT_INITIALIZED
  128. //
  129. // MessageId: CDO_E_INACTIVE
  130. //
  131. // MessageText:
  132. //
  133. //  The object is not active. It may have been deleted or it may not have been opened.
  134. //
  135. #define CDO_E_INACTIVE                   0x80040206L
  136. //
  137. // MessageId: CDO_E_NO_SUPPORT_FOR_OBJECTS
  138. //
  139. // MessageText:
  140. //
  141. //  The object does not support storing persistent state information for objects.
  142. //
  143. #define CDO_E_NO_SUPPORT_FOR_OBJECTS     0x80040207L
  144. //
  145. // MessageId: CDO_E_NOT_AVAILABLE
  146. //
  147. // MessageText:
  148. //
  149. //  The requested property or feature, while supported, is not available at this time or in this context.
  150. //
  151. #define CDO_E_NOT_AVAILABLE              0x80040208L
  152. //
  153. // MessageId: CDO_E_NO_DEFAULT_DROP_DIR
  154. //
  155. // MessageText:
  156. //
  157. //  No default drop directory has been configured for this server.
  158. //
  159. #define CDO_E_NO_DEFAULT_DROP_DIR        0x80040209L
  160. //
  161. // MessageId: CDO_E_SMTP_SERVER_REQUIRED
  162. //
  163. // MessageText:
  164. //
  165. //  The SMTP server name is required, and was not found in the configuration source.
  166. //
  167. #define CDO_E_SMTP_SERVER_REQUIRED       0x8004020AL
  168. //
  169. // MessageId: CDO_E_NNTP_SERVER_REQUIRED
  170. //
  171. // MessageText:
  172. //
  173. //  The NNTP server name is required, and was not found in the configuration source.
  174. //
  175. #define CDO_E_NNTP_SERVER_REQUIRED       0x8004020BL
  176. //
  177. // MessageId: CDO_E_RECIPIENT_MISSING
  178. //
  179. // MessageText:
  180. //
  181. //  At least one recipient is required, but none were found.
  182. //
  183. #define CDO_E_RECIPIENT_MISSING          0x8004020CL
  184. //
  185. // MessageId: CDO_E_FROM_MISSING
  186. //
  187. // MessageText:
  188. //
  189. //  At least one of the From or Sender fields is required, and neither was found.
  190. //
  191. #define CDO_E_FROM_MISSING               0x8004020DL
  192. //
  193. // MessageId: CDO_E_SENDER_REJECTED
  194. //
  195. // MessageText:
  196. //
  197. //  The server rejected the sender address. The server response was: %1
  198. //
  199. #define CDO_E_SENDER_REJECTED            0x8004020EL
  200. //
  201. // MessageId: CDO_E_RECIPIENTS_REJECTED
  202. //
  203. // MessageText:
  204. //
  205. //  The server rejected one or more recipient addresses. The server response was: %1
  206. //
  207. #define CDO_E_RECIPIENTS_REJECTED        0x8004020FL
  208. //
  209. // MessageId: CDO_E_NNTP_POST_FAILED
  210. //
  211. // MessageText:
  212. //
  213. //  The message could not be posted to the NNTP server. The transport error code was %2. The server response was %1
  214. //
  215. #define CDO_E_NNTP_POST_FAILED           0x80040210L
  216. //
  217. // MessageId: CDO_E_SMTP_SEND_FAILED
  218. //
  219. // MessageText:
  220. //
  221. //  The message could not be sent to the SMTP server. The transport error code was %2. The server response was %1
  222. //
  223. #define CDO_E_SMTP_SEND_FAILED           0x80040211L
  224. //
  225. // MessageId: CDO_E_CONNECTION_DROPPED
  226. //
  227. // MessageText:
  228. //
  229. //  The transport lost its connection to the server.
  230. //
  231. #define CDO_E_CONNECTION_DROPPED         0x80040212L
  232. //
  233. // MessageId: CDO_E_FAILED_TO_CONNECT
  234. //
  235. // MessageText:
  236. //
  237. //  The transport failed to connect to the server.
  238. //
  239. #define CDO_E_FAILED_TO_CONNECT          0x80040213L
  240. //
  241. // MessageId: CDO_E_INVALID_POST
  242. //
  243. // MessageText:
  244. //
  245. //  The Subject, From, and Newsgroup fields are all required, and one or more was not found.
  246. //
  247. #define CDO_E_INVALID_POST               0x80040214L
  248. //0x215 was CDO_E_DELETE_FAILED
  249. //
  250. // MessageId: CDO_E_AUTHENTICATION_FAILURE
  251. //
  252. // MessageText:
  253. //
  254. //  The server rejected the logon attempt due to authentication failure. The server response was: %1
  255. //
  256. #define CDO_E_AUTHENTICATION_FAILURE     0x80040215L
  257. //
  258. // MessageId: CDO_E_INVALID_CONTENT_TYPE
  259. //
  260. // MessageText:
  261. //
  262. //  The content type was not valid in this context. For example, the root of an MHTML message must be an HTML document.
  263. //
  264. #define CDO_E_INVALID_CONTENT_TYPE       0x80040216L
  265. //
  266. // MessageId: CDO_E_LOGON_FAILURE
  267. //
  268. // MessageText:
  269. //
  270. //  The transport was unable to log on to the server.
  271. //
  272. #define CDO_E_LOGON_FAILURE              0x80040217L
  273. //
  274. // MessageId: CDO_E_HTTP_NOT_FOUND
  275. //
  276. // MessageText:
  277. //
  278. //  The requested resource could not be found. The server response was: %1.
  279. //
  280. #define CDO_E_HTTP_NOT_FOUND             0x80040218L
  281. //
  282. // MessageId: CDO_E_HTTP_FORBIDDEN
  283. //
  284. // MessageText:
  285. //
  286. //  Access to the requested resource is denied. The server response was: %1.
  287. //
  288. #define CDO_E_HTTP_FORBIDDEN             0x80040219L
  289. //
  290. // MessageId: CDO_E_HTTP_FAILED
  291. //
  292. // MessageText:
  293. //
  294. //  The HTTP request failed.  The server response was: %1.
  295. //
  296. #define CDO_E_HTTP_FAILED                0x8004021AL
  297. //
  298. // MessageId: CDO_E_MULTIPART_NO_DATA
  299. //
  300. // MessageText:
  301. //
  302. //  This is a multipart body part. It has no content other than the body parts contained within it.
  303. //
  304. #define CDO_E_MULTIPART_NO_DATA          0x8004021BL
  305. // renamed, was CDO_E_INVALID_ENCODING_FOR_COMPOSITE
  306. //
  307. // MessageId: CDO_E_INVALID_ENCODING_FOR_MULTIPART
  308. //
  309. // MessageText:
  310. //
  311. //  Multipart body parts must be encoded as 7bit, 8bit, or binary.
  312. //
  313. #define CDO_E_INVALID_ENCODING_FOR_MULTIPART 0x8004021CL
  314. // 0x21d was CDO_E_PATHTOOLONG
  315. //
  316. // MessageId: CDO_E_UNSAFE_OPERATION
  317. //
  318. // MessageText:
  319. //
  320. //  The requested operation is not allowed in secure mode.
  321. //
  322. #define CDO_E_UNSAFE_OPERATION           0x8004021DL
  323. //
  324. // MessageId: CDO_E_PROP_NOT_FOUND
  325. //
  326. // MessageText:
  327. //
  328. //  The requested property was not found.
  329. //
  330. #define CDO_E_PROP_NOT_FOUND             0x8004021EL
  331. // 0x21f available, was CDO_E_UNSUPPORTED_PROTOCOL
  332. //
  333. // MessageId: CDO_E_INVALID_SEND_OPTION
  334. //
  335. // MessageText:
  336. //
  337. //  The "SendUsing" configuration value is invalid.
  338. //
  339. #define CDO_E_INVALID_SEND_OPTION        0x80040220L
  340. //
  341. // MessageId: CDO_E_INVALID_POST_OPTION
  342. //
  343. // MessageText:
  344. //
  345. //  The "PostUsing" configuration value is invalid.
  346. //
  347. #define CDO_E_INVALID_POST_OPTION        0x80040221L
  348. //
  349. // MessageId: CDO_E_NO_PICKUP_DIR
  350. //
  351. // MessageText:
  352. //
  353. //  The pickup directory path is required and was not specified. 
  354. //
  355. #define CDO_E_NO_PICKUP_DIR              0x80040222L
  356. //
  357. // MessageId: CDO_E_NOT_ALL_DELETED
  358. //
  359. // MessageText:
  360. //
  361. //  One or more messages could not be deleted.
  362. //
  363. #define CDO_E_NOT_ALL_DELETED            0x80040223L
  364. //
  365. // MessageId: CDO_E_NO_METHOD
  366. //
  367. // MessageText:
  368. //
  369. //  The requested operation is not available on the underlying object.
  370. //
  371. #define CDO_E_NO_METHOD                  0x80040224L
  372. //0x225 available, was CDO_E_BYTEARRAY_REQUIRED
  373. // 0x226 available, was CDO_E_BSTR_REQUIRED
  374. //
  375. // MessageId: CDO_E_PROP_READONLY
  376. //
  377. // MessageText:
  378. //
  379. //  The property is read-only.
  380. //
  381. #define CDO_E_PROP_READONLY              0x80040227L
  382. //
  383. // MessageId: CDO_E_PROP_CANNOT_DELETE
  384. //
  385. // MessageText:
  386. //
  387. //  The property cannot be deleted.
  388. //
  389. #define CDO_E_PROP_CANNOT_DELETE         0x80040228L
  390. //
  391. // MessageId: CDO_E_BAD_DATA
  392. //
  393. // MessageText:
  394. //
  395. //  Data written to the object are inconsistent or invalid. 
  396. //
  397. #define CDO_E_BAD_DATA                   0x80040229L
  398. //
  399. // MessageId: CDO_E_PROP_NONHEADER
  400. //
  401. // MessageText:
  402. //
  403. //  The requested property is not in the mail header namespace.
  404. //
  405. #define CDO_E_PROP_NONHEADER             0x8004022AL
  406. //
  407. // MessageId: CDO_E_INVALID_CHARSET
  408. //
  409. // MessageText:
  410. //
  411. //  The requested character set is not installed on the computer.
  412. //
  413. #define CDO_E_INVALID_CHARSET            0x8004022BL
  414. //
  415. // MessageId: CDO_E_ADOSTREAM_NOT_BOUND
  416. //
  417. // MessageText:
  418. //
  419. //  The ADO stream has not been opened.
  420. //
  421. #define CDO_E_ADOSTREAM_NOT_BOUND        0x8004022CL
  422. //
  423. // MessageId: CDO_E_CONTENTPROPXML_NOT_FOUND
  424. //
  425. // MessageText:
  426. //
  427. //  The content properties are missing.
  428. //
  429. #define CDO_E_CONTENTPROPXML_NOT_FOUND   0x8004022DL
  430. //
  431. // MessageId: CDO_E_CONTENTPROPXML_WRONG_CHARSET
  432. //
  433. // MessageText:
  434. //
  435. //  Content properties XML must be encoded using UTF-8.
  436. //
  437. #define CDO_E_CONTENTPROPXML_WRONG_CHARSET 0x8004022EL
  438. //
  439. // MessageId: CDO_E_CONTENTPROPXML_PARSE_FAILED
  440. //
  441. // MessageText:
  442. //
  443. //  Failed to parse content properties XML.
  444. //
  445. #define CDO_E_CONTENTPROPXML_PARSE_FAILED 0x8004022FL
  446. //
  447. // MessageId: CDO_E_CONTENTPROPXML_CONVERT_FAILED
  448. //
  449. // MessageText:
  450. //
  451. //  Failed to convert a property from XML to a requested type.
  452. //
  453. #define CDO_E_CONTENTPROPXML_CONVERT_FAILED 0x80040230L
  454. //
  455. // MessageId: CDO_E_NO_DIRECTORIES_SPECIFIED
  456. //
  457. // MessageText:
  458. //
  459. //  No directories were specified for resolution.
  460. //
  461. #define CDO_E_NO_DIRECTORIES_SPECIFIED   0x80040231L
  462. //
  463. // MessageId: CDO_E_DIRECTORIES_UNREACHABLE
  464. //
  465. // MessageText:
  466. //
  467. //  Failed to resolve against one or more of the specified directories.
  468. //
  469. #define CDO_E_DIRECTORIES_UNREACHABLE    0x80040232L
  470. //
  471. // MessageId: CDO_E_BAD_SENDER
  472. //
  473. // MessageText:
  474. //
  475. //  Could not find the Sender's mailbox.
  476. //
  477. #define CDO_E_BAD_SENDER                 0x80040233L
  478. //
  479. // MessageId: CDO_E_SELF_BINDING
  480. //
  481. // MessageText:
  482. //
  483. //  Binding to self is not allowed.
  484. //
  485. #define CDO_E_SELF_BINDING               0x80040234L
  486. //
  487. // MessageId: CDO_E_BAD_ATTENDEE_DATA
  488. //
  489. // MessageText:
  490. //
  491. //  Data of the Attendees in the object are inconsistent or invalid. 
  492. //
  493. #define CDO_E_BAD_ATTENDEE_DATA          0x80040235L
  494. //////////////////////////////////////////////////////////////////////////////
  495. // parameter validation error messages
  496. //
  497. // MessageId: CDO_E_ARGUMENT1
  498. //
  499. // MessageText:
  500. //
  501. //  The first argument is invalid
  502. //
  503. #define CDO_E_ARGUMENT1                  0x80044000L
  504. //
  505. // MessageId: CDO_E_ARGUMENT2
  506. //
  507. // MessageText:
  508. //
  509. //  The second argument is invalid
  510. //
  511. #define CDO_E_ARGUMENT2                  0x80044001L
  512. //
  513. // MessageId: CDO_E_ARGUMENT3
  514. //
  515. // MessageText:
  516. //
  517. //  The third argument is invalid
  518. //
  519. #define CDO_E_ARGUMENT3                  0x80044002L
  520. //
  521. // MessageId: CDO_E_ARGUMENT4
  522. //
  523. // MessageText:
  524. //
  525. //  The fourth argument is invalid
  526. //
  527. #define CDO_E_ARGUMENT4                  0x80044003L
  528. //
  529. // MessageId: CDO_E_ARGUMENT5
  530. //
  531. // MessageText:
  532. //
  533. //  The fifth argument is invalid
  534. //
  535. #define CDO_E_ARGUMENT5                  0x80044004L
  536. //////////////////////////////////////////////////////////////////////////////
  537. // Errors returned by MimeOle
  538. //
  539. // These are defined here to provide extended error info text descriptions.
  540. // CDO should never explicitly return any of these errors; they may be passed
  541. // through from MimeOle
  542. // I expect there are numerous places where these errors could still slip through:
  543. // MIME_E_NOT_FOUND
  544. //
  545. // MessageId: CDO_E_NOT_FOUND
  546. //
  547. // MessageText:
  548. //
  549. //  The requested body part was not found in this message.
  550. //
  551. #define CDO_E_NOT_FOUND                  0x800CCE05L
  552. // MIME_E_INVALID_ENCODINGTYPE
  553. // Returned when MimeOLE tries to BinHex encode.  Can also be returned if an invalid encoding
  554. // is specified, but CDO should protect from these cases.
  555. //
  556. // Also CDO returns this error when a client sets an invalid encoding
  557. //
  558. // MessageId: CDO_E_INVALID_ENCODING_TYPE
  559. //
  560. // MessageText:
  561. //
  562. //  The content encoding type is invalid.
  563. //
  564. #define CDO_E_INVALID_ENCODING_TYPE      0x800CCE1DL
  565. ///////////////////////////////////////
  566. // Headers and folder names
  567. //
  568. // MessageId = 0x1000 through 0x1fff, localized in client languages.
  569. ///////////////////////////////////////
  570. //
  571. // MessageId: IDS_ORIGINAL_MESSAGE
  572. //
  573. // MessageText:
  574. //
  575. //  -----Original Message-----%0
  576. //
  577. #define IDS_ORIGINAL_MESSAGE             0x00011000L
  578. //
  579. // MessageId: IDS_FROM
  580. //
  581. // MessageText:
  582. //
  583. //  From:%0
  584. //
  585. #define IDS_FROM                         0x00011001L
  586. //
  587. // MessageId: IDS_SENT
  588. //
  589. // MessageText:
  590. //
  591. //  Sent:%0
  592. //
  593. #define IDS_SENT                         0x00011002L
  594. //
  595. // MessageId: IDS_POSTED_AT
  596. //
  597. // MessageText:
  598. //
  599. //  Posted At:%0
  600. //
  601. #define IDS_POSTED_AT                    0x00011003L
  602. //
  603. // MessageId: IDS_TO
  604. //
  605. // MessageText:
  606. //
  607. //  To:%0
  608. //
  609. #define IDS_TO                           0x00011004L
  610. //
  611. // MessageId: IDS_CC
  612. //
  613. // MessageText:
  614. //
  615. //  Cc:%0
  616. //
  617. #define IDS_CC                           0x00011005L
  618. //
  619. // MessageId: IDS_POSTED_TO
  620. //
  621. // MessageText:
  622. //
  623. //  Posted To:%0
  624. //
  625. #define IDS_POSTED_TO                    0x00011006L
  626. //
  627. // MessageId: IDS_CONVERSATION
  628. //
  629. // MessageText:
  630. //
  631. //  Conversation:%0
  632. //
  633. #define IDS_CONVERSATION                 0x00011007L
  634. //
  635. // MessageId: IDS_SUBJECT
  636. //
  637. // MessageText:
  638. //
  639. //  Subject:%0
  640. //
  641. #define IDS_SUBJECT                      0x00011008L
  642. //
  643. // MessageId: IDS_IMPORTANCE
  644. //
  645. // MessageText:
  646. //
  647. //  Importance:%0
  648. //
  649. #define IDS_IMPORTANCE                   0x00011009L
  650. //
  651. // MessageId: IDS_ON_BEHALF_OF
  652. //
  653. // MessageText:
  654. //
  655. //  on behalf of%0
  656. //
  657. #define IDS_ON_BEHALF_OF                 0x0001100AL
  658. //
  659. // MessageId: IDS_FW
  660. //
  661. // MessageText:
  662. //
  663. //  FW:%0
  664. //
  665. #define IDS_FW                           0x0001100BL
  666. //
  667. // MessageId: IDS_RE
  668. //
  669. // MessageText:
  670. //
  671. //  RE:%0
  672. //
  673. #define IDS_RE                           0x0001100CL
  674. //
  675. // MessageId: IDS_CODEPAGE
  676. //
  677. // MessageText:
  678. //
  679. //  1252%0
  680. //
  681. #define IDS_CODEPAGE                     0x0001100DL
  682. #ifdef CDOSVR
  683. //
  684. // MessageId: IDS_CalendarFolder
  685. //
  686. // MessageText:
  687. //
  688. //  Calendar%0
  689. //
  690. #define IDS_CalendarFolder               0x0001100EL
  691. //
  692. // MessageId: IDS_ContactsFolder
  693. //
  694. // MessageText:
  695. //
  696. //  Contacts%0
  697. //
  698. #define IDS_ContactsFolder               0x0001100FL
  699. //
  700. // MessageId: IDS_DraftsFolder
  701. //
  702. // MessageText:
  703. //
  704. //  Drafts%0
  705. //
  706. #define IDS_DraftsFolder                 0x00011010L
  707. //
  708. // MessageId: IDS_JournalFolder
  709. //
  710. // MessageText:
  711. //
  712. //  Journal%0
  713. //
  714. #define IDS_JournalFolder                0x00011011L
  715. //
  716. // MessageId: IDS_NotesFolder
  717. //
  718. // MessageText:
  719. //
  720. //  Notes%0
  721. //
  722. #define IDS_NotesFolder                  0x00011012L
  723. //
  724. // MessageId: IDS_TasksFolder
  725. //
  726. // MessageText:
  727. //
  728. //  Tasks%0
  729. //
  730. #define IDS_TasksFolder                  0x00011013L
  731. #endif
  732. //
  733. // MessageId: IDS_NewFolder
  734. //
  735. // MessageText:
  736. //
  737. //  New Folder%0
  738. //
  739. #define IDS_NewFolder                    0x00011014L
  740. //
  741. // MessageId: IDS_Location
  742. //
  743. // MessageText:
  744. //
  745. //  Location:%0
  746. //
  747. #define IDS_Location                     0x00011015L
  748. //
  749. // MessageId: IDS_StartTime
  750. //
  751. // MessageText:
  752. //
  753. //  Start Time:%0
  754. //
  755. #define IDS_StartTime                    0x00011016L
  756. //
  757. // MessageId: IDS_EndTime
  758. //
  759. // MessageText:
  760. //
  761. //  End Time:%0
  762. //
  763. #define IDS_EndTime                      0x00011017L
  764. //
  765. // MessageId: IDS_TimeZone
  766. //
  767. // MessageText:
  768. //
  769. //  Time Zone:%0
  770. //
  771. #define IDS_TimeZone                     0x00011018L
  772. //
  773. // MessageId: IDS_LocalTime
  774. //
  775. // MessageText:
  776. //
  777. //  Local time%0
  778. //
  779. #define IDS_LocalTime                    0x00011019L
  780. //
  781. // MessageId: IDS_Organizer
  782. //
  783. // MessageText:
  784. //
  785. //  Organizer:%0
  786. //
  787. #define IDS_Organizer                    0x0001101AL
  788. //
  789. // MessageId: IDS_ApptType
  790. //
  791. // MessageText:
  792. //
  793. //  Type:%0
  794. //
  795. #define IDS_ApptType                     0x0001101BL
  796. //
  797. // MessageId: IDS_SingleAppt
  798. //
  799. // MessageText:
  800. //
  801. //  Single Appointment%0
  802. //
  803. #define IDS_SingleAppt                   0x0001101CL
  804. //
  805. // MessageId: IDS_SingleMtg
  806. //
  807. // MessageText:
  808. //
  809. //  Single Meeting%0
  810. //
  811. #define IDS_SingleMtg                    0x0001101DL
  812. //
  813. // MessageId: IDS_RecurAppt
  814. //
  815. // MessageText:
  816. //
  817. //  Recurring Appointment%0
  818. //
  819. #define IDS_RecurAppt                    0x0001101EL
  820. //
  821. // MessageId: IDS_RecurMtg
  822. //
  823. // MessageText:
  824. //
  825. //  Recurring Meeting%0
  826. //
  827. #define IDS_RecurMtg                     0x0001101FL
  828. ///////////////////////////////////////
  829. // time zones
  830. //
  831. // MessageId = 0x1100 through 0x11ff
  832. ///////////////////////////////////////
  833. //
  834. // MessageId: IDS_Universal
  835. //
  836. // MessageText:
  837. //
  838. //  Universal Coordinated Time%0
  839. //
  840. #define IDS_Universal                    0x00011100L
  841. //
  842. // MessageId: IDS_Greenwich
  843. //
  844. // MessageText:
  845. //
  846. //  Greenwich Mean Time/Dublin/Edinburgh/London%0
  847. //
  848. #define IDS_Greenwich                    0x00011101L
  849. //
  850. // MessageId: IDS_Sarajevo
  851. //
  852. // MessageText:
  853. //
  854. //  Sarajevo/Warsaw/Zagreb%0
  855. //
  856. #define IDS_Sarajevo                     0x00011102L
  857. //
  858. // MessageId: IDS_Paris
  859. //
  860. // MessageText:
  861. //
  862. //  Paris/Madrid/Brussels/Copenhagen%0
  863. //
  864. #define IDS_Paris                        0x00011103L
  865. //
  866. // MessageId: IDS_Berlin
  867. //
  868. // MessageText:
  869. //
  870. //  Berlin/Stockholm/Rome/Bern/Vienna%0
  871. //
  872. #define IDS_Berlin                       0x00011104L
  873. //
  874. // MessageId: IDS_EasternEurope
  875. //
  876. // MessageText:
  877. //
  878. //  Bucharest/Eastern Europe%0
  879. //
  880. #define IDS_EasternEurope                0x00011105L
  881. //
  882. // MessageId: IDS_Prague
  883. //
  884. // MessageText:
  885. //
  886. //  Prague/Central Europe%0
  887. //
  888. #define IDS_Prague                       0x00011106L
  889. //
  890. // MessageId: IDS_Athens
  891. //
  892. // MessageText:
  893. //
  894. //  Athens/Istanbul/Minsk%0
  895. //
  896. #define IDS_Athens                       0x00011107L
  897. //
  898. // MessageId: IDS_Brasilia
  899. //
  900. // MessageText:
  901. //
  902. //  Brasilia%0
  903. //
  904. #define IDS_Brasilia                     0x00011108L
  905. //
  906. // MessageId: IDS_Atlantic
  907. //
  908. // MessageText:
  909. //
  910. //  Atlantic Time (Canada)%0
  911. //
  912. #define IDS_Atlantic                     0x00011109L
  913. //
  914. // MessageId: IDS_Eastern
  915. //
  916. // MessageText:
  917. //
  918. //  Eastern Time (US & Canada)%0
  919. //
  920. #define IDS_Eastern                      0x0001110AL
  921. //
  922. // MessageId: IDS_Central
  923. //
  924. // MessageText:
  925. //
  926. //  Central Time (US & Canada)%0
  927. //
  928. #define IDS_Central                      0x0001110BL
  929. //
  930. // MessageId: IDS_Mountain
  931. //
  932. // MessageText:
  933. //
  934. //  Mountain Time (US & Canada)%0
  935. //
  936. #define IDS_Mountain                     0x0001110CL
  937. //
  938. // MessageId: IDS_Pacific
  939. //
  940. // MessageText:
  941. //
  942. //  Pacific Time (US & Canada)/Tijuana%0
  943. //
  944. #define IDS_Pacific                      0x0001110DL
  945. //
  946. // MessageId: IDS_Alaska
  947. //
  948. // MessageText:
  949. //
  950. //  Alaska%0
  951. //
  952. #define IDS_Alaska                       0x0001110EL
  953. //
  954. // MessageId: IDS_Hawaii
  955. //
  956. // MessageText:
  957. //
  958. //  Hawaii%0
  959. //
  960. #define IDS_Hawaii                       0x0001110FL
  961. //
  962. // MessageId: IDS_Midway
  963. //
  964. // MessageText:
  965. //
  966. //  Midway Island/Samoa%0
  967. //
  968. #define IDS_Midway                       0x00011110L
  969. //
  970. // MessageId: IDS_Wellington
  971. //
  972. // MessageText:
  973. //
  974. //  Wellington/Auckland%0
  975. //
  976. #define IDS_Wellington                   0x00011111L
  977. //
  978. // MessageId: IDS_Brisbane
  979. //
  980. // MessageText:
  981. //
  982. //  Brisbane/East Australia%0
  983. //
  984. #define IDS_Brisbane                     0x00011112L
  985. //
  986. // MessageId: IDS_Adelaide
  987. //
  988. // MessageText:
  989. //
  990. //  Adelaide/Central Australia%0
  991. //
  992. #define IDS_Adelaide                     0x00011113L
  993. //
  994. // MessageId: IDS_Tokyo
  995. //
  996. // MessageText:
  997. //
  998. //  Tokyo/Osaka/Sapporo%0
  999. //
  1000. #define IDS_Tokyo                        0x00011114L
  1001. //
  1002. // MessageId: IDS_Singapore
  1003. //
  1004. // MessageText:
  1005. //
  1006. //  Kuala Lumpur/Singapore%0
  1007. //
  1008. #define IDS_Singapore                    0x00011115L
  1009. //
  1010. // MessageId: IDS_Bangkok
  1011. //
  1012. // MessageText:
  1013. //
  1014. //  Bangkok/Jakarta/Hanoi%0
  1015. //
  1016. #define IDS_Bangkok                      0x00011116L
  1017. //
  1018. // MessageId: IDS_Bombay
  1019. //
  1020. // MessageText:
  1021. //
  1022. //  Calcutta/Chennai/Mumbai/New Delhi/India Standard Time%0
  1023. //
  1024. #define IDS_Bombay                       0x00011117L
  1025. //
  1026. // MessageId: IDS_AbuDhabi
  1027. //
  1028. // MessageText:
  1029. //
  1030. //  Abu Dhabi/Muscat%0
  1031. //
  1032. #define IDS_AbuDhabi                     0x00011118L
  1033. //
  1034. // MessageId: IDS_Tehran
  1035. //
  1036. // MessageText:
  1037. //
  1038. //  Tehran%0
  1039. //
  1040. #define IDS_Tehran                       0x00011119L
  1041. //
  1042. // MessageId: IDS_Baghdad
  1043. //
  1044. // MessageText:
  1045. //
  1046. //  Baghdad%0
  1047. //
  1048. #define IDS_Baghdad                      0x0001111AL
  1049. //
  1050. // MessageId: IDS_Israel
  1051. //
  1052. // MessageText:
  1053. //
  1054. //  Israel/Jerusalem Standard Time%0
  1055. //
  1056. #define IDS_Israel                       0x0001111BL
  1057. //
  1058. // MessageId: IDS_Newfoundland
  1059. //
  1060. // MessageText:
  1061. //
  1062. //  Newfoundland%0
  1063. //
  1064. #define IDS_Newfoundland                 0x0001111CL
  1065. //
  1066. // MessageId: IDS_Azores
  1067. //
  1068. // MessageText:
  1069. //
  1070. //  Azores%0
  1071. //
  1072. #define IDS_Azores                       0x0001111DL
  1073. //
  1074. // MessageId: IDS_MidAtlantic
  1075. //
  1076. // MessageText:
  1077. //
  1078. //  Mid-Atlantic%0
  1079. //
  1080. #define IDS_MidAtlantic                  0x0001111EL
  1081. //
  1082. // MessageId: IDS_Monrovia
  1083. //
  1084. // MessageText:
  1085. //
  1086. //  Monrovia/Casablanca%0
  1087. //
  1088. #define IDS_Monrovia                     0x0001111FL
  1089. //
  1090. // MessageId: IDS_BuenosAires
  1091. //
  1092. // MessageText:
  1093. //
  1094. //  Buenos Aires/Georgetown%0
  1095. //
  1096. #define IDS_BuenosAires                  0x00011120L
  1097. //
  1098. // MessageId: IDS_Caracas
  1099. //
  1100. // MessageText:
  1101. //
  1102. //  Caracas/La Paz%0
  1103. //
  1104. #define IDS_Caracas                      0x00011121L
  1105. //
  1106. // MessageId: IDS_Indiana
  1107. //
  1108. // MessageText:
  1109. //
  1110. //  Indiana (East)%0
  1111. //
  1112. #define IDS_Indiana                      0x00011122L
  1113. //
  1114. // MessageId: IDS_Bogota
  1115. //
  1116. // MessageText:
  1117. //
  1118. //  Bogota/Lima%0
  1119. //
  1120. #define IDS_Bogota                       0x00011123L
  1121. //
  1122. // MessageId: IDS_Saskatchewan
  1123. //
  1124. // MessageText:
  1125. //
  1126. //  Saskatchewan%0
  1127. //
  1128. #define IDS_Saskatchewan                 0x00011124L
  1129. //
  1130. // MessageId: IDS_Mexico
  1131. //
  1132. // MessageText:
  1133. //
  1134. //  Mexico City/Tegucigalpa%0
  1135. //
  1136. #define IDS_Mexico                       0x00011125L
  1137. //
  1138. // MessageId: IDS_Arizona
  1139. //
  1140. // MessageText:
  1141. //
  1142. //  Arizona%0
  1143. //
  1144. #define IDS_Arizona                      0x00011126L
  1145. //
  1146. // MessageId: IDS_Eniwetok
  1147. //
  1148. // MessageText:
  1149. //
  1150. //  Eniwetok/Kwajalein/Dateline Time%0
  1151. //
  1152. #define IDS_Eniwetok                     0x00011127L
  1153. //
  1154. // MessageId: IDS_Fiji
  1155. //
  1156. // MessageText:
  1157. //
  1158. //  Fiji/Kamchatka/Marshall Is.%0
  1159. //
  1160. #define IDS_Fiji                         0x00011128L
  1161. //
  1162. // MessageId: IDS_Magadan
  1163. //
  1164. // MessageText:
  1165. //
  1166. //  Magadan/Solomon Is./New Caledonia%0
  1167. //
  1168. #define IDS_Magadan                      0x00011129L
  1169. //
  1170. // MessageId: IDS_Hobart
  1171. //
  1172. // MessageText:
  1173. //
  1174. //  Hobart/Tasmania%0
  1175. //
  1176. #define IDS_Hobart                       0x0001112AL
  1177. //
  1178. // MessageId: IDS_Guam
  1179. //
  1180. // MessageText:
  1181. //
  1182. //  Guam/Port Moresby%0
  1183. //
  1184. #define IDS_Guam                         0x0001112BL
  1185. //
  1186. // MessageId: IDS_Darwin
  1187. //
  1188. // MessageText:
  1189. //
  1190. //  Darwin%0
  1191. //
  1192. #define IDS_Darwin                       0x0001112CL
  1193. //
  1194. // MessageId: IDS_Beijing
  1195. //
  1196. // MessageText:
  1197. //
  1198. //  Beijing/Chongqing/Hong Kong/Urumqi%0
  1199. //
  1200. #define IDS_Beijing                      0x0001112DL
  1201. //
  1202. // MessageId: IDS_Almaty
  1203. //
  1204. // MessageText:
  1205. //
  1206. //  Almaty/North Central Asia/Novosibirsk%0
  1207. //
  1208. #define IDS_Almaty                       0x0001112EL
  1209. //
  1210. // MessageId: IDS_Islamabad
  1211. //
  1212. // MessageText:
  1213. //
  1214. //  Islamabad/Karachi/Sverdlovsk/Tashkent%0
  1215. //
  1216. #define IDS_Islamabad                    0x0001112FL
  1217. //
  1218. // MessageId: IDS_Kabul
  1219. //
  1220. // MessageText:
  1221. //
  1222. //  Kabul%0
  1223. //
  1224. #define IDS_Kabul                        0x00011130L
  1225. //
  1226. // MessageId: IDS_Cairo
  1227. //
  1228. // MessageText:
  1229. //
  1230. //  Cairo%0
  1231. //
  1232. #define IDS_Cairo                        0x00011131L
  1233. //
  1234. // MessageId: IDS_Harare
  1235. //
  1236. // MessageText:
  1237. //
  1238. //  Harare/Pretoria%0
  1239. //
  1240. #define IDS_Harare                       0x00011132L
  1241. //
  1242. // MessageId: IDS_Moscow
  1243. //
  1244. // MessageText:
  1245. //
  1246. //  Moscow/St. Petersburg/Volgograd%0
  1247. //
  1248. #define IDS_Moscow                       0x00011133L
  1249. //
  1250. // MessageId: IDS_CapeVerde
  1251. //
  1252. // MessageText:
  1253. //
  1254. //  Cape Verde Is.%0
  1255. //
  1256. #define IDS_CapeVerde                    0x00011134L
  1257. //
  1258. // MessageId: IDS_Caucasus
  1259. //
  1260. // MessageText:
  1261. //
  1262. //  Caucasus/Baku/Tbilisi/Yerevan%0
  1263. //
  1264. #define IDS_Caucasus                     0x00011135L
  1265. //
  1266. // MessageId: IDS_CentralAmerica
  1267. //
  1268. // MessageText:
  1269. //
  1270. //  Central America%0
  1271. //
  1272. #define IDS_CentralAmerica               0x00011136L
  1273. //
  1274. // MessageId: IDS_EastAfrica
  1275. //
  1276. // MessageText:
  1277. //
  1278. //  East Africa/Nairobi%0
  1279. //
  1280. #define IDS_EastAfrica                   0x00011137L
  1281. //
  1282. // MessageId: IDS_Melbourne
  1283. //
  1284. // MessageText:
  1285. //
  1286. //  Melbourne/Sydney%0
  1287. //
  1288. #define IDS_Melbourne                    0x00011138L
  1289. //
  1290. // MessageId: IDS_Ekaterinburg
  1291. //
  1292. // MessageText:
  1293. //
  1294. //  Ekaterinburg%0
  1295. //
  1296. #define IDS_Ekaterinburg                 0x00011139L
  1297. //
  1298. // MessageId: IDS_Helsinki
  1299. //
  1300. // MessageText:
  1301. //
  1302. //  Helsinki/Riga/Tallinn%0
  1303. //
  1304. #define IDS_Helsinki                     0x0001113AL
  1305. //
  1306. // MessageId: IDS_Greenland
  1307. //
  1308. // MessageText:
  1309. //
  1310. //  Greenland%0
  1311. //
  1312. #define IDS_Greenland                    0x0001113BL
  1313. //
  1314. // MessageId: IDS_Rangoon
  1315. //
  1316. // MessageText:
  1317. //
  1318. //  Rangoon%0
  1319. //
  1320. #define IDS_Rangoon                      0x0001113CL
  1321. //
  1322. // MessageId: IDS_Nepal
  1323. //
  1324. // MessageText:
  1325. //
  1326. //  Kathmandu/Nepal%0
  1327. //
  1328. #define IDS_Nepal                        0x0001113DL
  1329. //
  1330. // MessageId: IDS_Irkutsk
  1331. //
  1332. // MessageText:
  1333. //
  1334. //  Irkutsk/Ulaan Bataar%0
  1335. //
  1336. #define IDS_Irkutsk                      0x0001113EL
  1337. //
  1338. // MessageId: IDS_Krasnoyarsk
  1339. //
  1340. // MessageText:
  1341. //
  1342. //  Krasnoyarsk/North Asia%0
  1343. //
  1344. #define IDS_Krasnoyarsk                  0x0001113FL
  1345. //
  1346. // MessageId: IDS_Santiago
  1347. //
  1348. // MessageText:
  1349. //
  1350. //  Santiago%0
  1351. //
  1352. #define IDS_Santiago                     0x00011140L
  1353. //
  1354. // MessageId: IDS_SriLanka
  1355. //
  1356. // MessageText:
  1357. //
  1358. //  Sri Jayawardenepura/Sri Lanka%0
  1359. //
  1360. #define IDS_SriLanka                     0x00011141L
  1361. //
  1362. // MessageId: IDS_Tonga
  1363. //
  1364. // MessageText:
  1365. //
  1366. //  Tonga/Nuku'alofa%0
  1367. //
  1368. #define IDS_Tonga                        0x00011142L
  1369. //
  1370. // MessageId: IDS_Vladivostok
  1371. //
  1372. // MessageText:
  1373. //
  1374. //  Vladivostok%0
  1375. //
  1376. #define IDS_Vladivostok                  0x00011143L
  1377. //
  1378. // MessageId: IDS_WestCentralAfrica
  1379. //
  1380. // MessageText:
  1381. //
  1382. //  West Central Africa%0
  1383. //
  1384. #define IDS_WestCentralAfrica            0x00011144L
  1385. //
  1386. // MessageId: IDS_Yakutsk
  1387. //
  1388. // MessageText:
  1389. //
  1390. //  Yakutsk%0
  1391. //
  1392. #define IDS_Yakutsk                      0x00011145L
  1393. //
  1394. // MessageId: IDS_Dhaka
  1395. //
  1396. // MessageText:
  1397. //
  1398. //  Astana/Dhaka%0
  1399. //
  1400. #define IDS_Dhaka                        0x00011146L
  1401. //
  1402. // MessageId: IDS_Seoul
  1403. //
  1404. // MessageText:
  1405. //
  1406. //  Seoul/Korea Standard Time%0
  1407. //
  1408. #define IDS_Seoul                        0x00011147L
  1409. //
  1410. // MessageId: IDS_Perth
  1411. //
  1412. // MessageText:
  1413. //
  1414. //  Perth/Western Australia%0
  1415. //
  1416. #define IDS_Perth                        0x00011148L
  1417. //
  1418. // MessageId: IDS_Arab
  1419. //
  1420. // MessageText:
  1421. //
  1422. //  Arab/Kuwait/Riyadh%0
  1423. //
  1424. #define IDS_Arab                         0x00011149L
  1425. //
  1426. // MessageId: IDS_Taipei
  1427. //
  1428. // MessageText:
  1429. //
  1430. //  Taipei%0
  1431. //
  1432. #define IDS_Taipei                       0x0001114AL
  1433. //
  1434. // MessageId: IDS_Sydney2000
  1435. //
  1436. // MessageText:
  1437. //
  1438. //  Canberra/Melbourne/Sydney/Hobart (Year 2000 only)%0
  1439. //
  1440. #define IDS_Sydney2000                   0x0001114BL
  1441. ///////////////////////////////////////
  1442. // EXCDO messages
  1443. //
  1444. // MessageId = 0x2000 through 0x2fff, localized in server languages.
  1445. ///////////////////////////////////////
  1446. #ifdef CDOSVR
  1447. //
  1448. // MessageId: evtMethodCalled
  1449. //
  1450. // MessageText:
  1451. //
  1452. //  %1 Event on %2 called with Flags %3
  1453. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1454. //
  1455. #define evtMethodCalled                  0x00032000L
  1456. //
  1457. // MessageId: evtMethodReturning
  1458. //
  1459. // MessageText:
  1460. //
  1461. //  %1 Event Method is returning with HRESULT %2
  1462. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1463. //
  1464. #define evtMethodReturning               0x00032001L
  1465. //
  1466. // MessageId: evtIsAborting
  1467. //
  1468. // MessageText:
  1469. //
  1470. //  %1 Event Method is halting, HRESULT %2
  1471. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1472. //
  1473. #define evtIsAborting                    0xC0032002L
  1474. //
  1475. // MessageId: evtExpansionInitialized
  1476. //
  1477. // MessageText:
  1478. //
  1479. //  Calendaring agent is initialized successfully.
  1480. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1481. //
  1482. #define evtExpansionInitialized          0x00032003L
  1483. //
  1484. // MessageId: evtExpansionUnInitialized
  1485. //
  1486. // MessageText:
  1487. //
  1488. //  Calendaring agent is stopping successfully.
  1489. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1490. //
  1491. #define evtExpansionUnInitialized        0x00032004L
  1492. //
  1493. // MessageId: evtExpansionInitializeFailed
  1494. //
  1495. // MessageText:
  1496. //
  1497. //  Calendaring agent failed to initialize with error %1.
  1498. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1499. //
  1500. #define evtExpansionInitializeFailed     0xC0032005L
  1501. //
  1502. // MessageId: evtExpansionRegisterFailed
  1503. //
  1504. // MessageText:
  1505. //
  1506. //  Calendaring recurring item expansion failed to register for notifications for MDB %1.
  1507. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1508. //
  1509. #define evtExpansionRegisterFailed       0xC0032006L
  1510. //
  1511. // MessageId: evtExpansionMessageSaveChangesFailed
  1512. //
  1513. // MessageText:
  1514. //
  1515. //  Calendaring agent failed in message save notification with error %1 on URL %2.
  1516. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1517. //
  1518. #define evtExpansionMessageSaveChangesFailed 0xC0032007L
  1519. //
  1520. // MessageId: evtExpansionMessageDeleteFailed
  1521. //
  1522. // MessageText:
  1523. //
  1524. //  Calendaring agent failed in message delete notification with error %1 on URL %2.
  1525. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1526. //
  1527. #define evtExpansionMessageDeleteFailed  0xC0032008L
  1528. //
  1529. // MessageId: evtExpansionFolderSaveChangesFailed
  1530. //
  1531. // MessageText:
  1532. //
  1533. //  Calendaring agent failed in folder save notification with error %1 on URL %2.
  1534. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1535. //
  1536. #define evtExpansionFolderSaveChangesFailed 0xC0032009L
  1537. //
  1538. // MessageId: evtExpansionTooManyInstancesPerDay
  1539. //
  1540. // MessageText:
  1541. //
  1542. //  Calendaring agent truncated expansion after %1 instances per day.
  1543. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1544. //
  1545. #define evtExpansionTooManyInstancesPerDay 0x8003200AL
  1546. //
  1547. // MessageId: evtMailboxCreateTotalFailure
  1548. //
  1549. // MessageText:
  1550. //
  1551. //  The mailbox creation callback failed to create any folders in mailbox %1.
  1552. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1553. //
  1554. #define evtMailboxCreateTotalFailure     0xC003200BL
  1555. //
  1556. // MessageId: evtMailboxCreatePartialFailure
  1557. //
  1558. // MessageText:
  1559. //
  1560. //  The mailbox creation callback failed to create one or more folders in mailbox %1.
  1561. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1562. //
  1563. #define evtMailboxCreatePartialFailure   0xC003200CL
  1564. //
  1565. // MessageId: evtUninitImplRestFailed
  1566. //
  1567. // MessageText:
  1568. //
  1569. //  Calendaring agent failed to uninitialize implied restriction with error %1 on URL %2.
  1570. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1571. //
  1572. #define evtUninitImplRestFailed          0xC003200DL
  1573. //
  1574. // MessageId: evtExpandSavingAppt
  1575. //
  1576. // MessageText:
  1577. //
  1578. //  Calendaring agent failed with error code %1 while saving appointment.
  1579. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1580. //
  1581. #define evtExpandSavingAppt              0xC003200EL
  1582. //
  1583. // MessageId: evtExpandDeletingAppt
  1584. //
  1585. // MessageText:
  1586. //
  1587. //  Calendaring agent failed with error code %1 while deleting appointment.
  1588. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1589. //
  1590. #define evtExpandDeletingAppt            0xC003200FL
  1591. //
  1592. // MessageId: evtExpandQuery
  1593. //
  1594. // MessageText:
  1595. //
  1596. //  Calendaring agent failed with error code %1 while expanding recurring appointments.
  1597. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1598. //
  1599. #define evtExpandQuery                   0xC0032010L
  1600. //
  1601. // MessageId: evtExpandFolderSetProps
  1602. //
  1603. // MessageText:
  1604. //
  1605. //  Calendaring agent failed with error code %1 while cleaning up the calendar.
  1606. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1607. //
  1608. #define evtExpandFolderSetProps          0xC0032011L
  1609. //
  1610. // MessageId: evtRegistryFailure
  1611. //
  1612. // MessageText:
  1613. //
  1614. //  Calendaring agent failed to open registry with error code %1.
  1615. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1616. //
  1617. #define evtRegistryFailure               0xC0032012L
  1618. //
  1619. // MessageId: evtExpStat
  1620. //
  1621. // MessageText:
  1622. //
  1623. //  Calendaring agent failed in the following function with error code: %1.
  1624. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1625. //
  1626. #define evtExpStat                       0xC0032013L
  1627. //
  1628. // MessageId: evtDumpFcn
  1629. //
  1630. // MessageText:
  1631. //
  1632. //  Calendaring agent failed in the following function with error code %1.
  1633. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1634. //
  1635. #define evtDumpFcn                       0xC0032014L
  1636. //
  1637. // MessageId: evtSaveDeleteFailFBUpdate
  1638. //
  1639. // MessageText:
  1640. //
  1641. //  Calendaring agent failed to update the free/busy cache during an appointment save or delete operation.
  1642. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1643. //
  1644. #define evtSaveDeleteFailFBUpdate        0xC0032015L
  1645. //
  1646. // MessageId: evtProcessingQueryCallback
  1647. //
  1648. // MessageText:
  1649. //
  1650. //  Calendaring agent failed to update the free/busy cache and internal data while processing a query.
  1651. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1652. //
  1653. #define evtProcessingQueryCallback       0xC0032016L
  1654. //
  1655. // MessageId: evtMailboxLocalizeTotalFailure
  1656. //
  1657. // MessageText:
  1658. //
  1659. //  The mailbox creation callback failed to rename any folders in mailbox %1.
  1660. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1661. //
  1662. #define evtMailboxLocalizeTotalFailure   0xC0032017L
  1663. //
  1664. // MessageId: evtMailboxLocalizePartialFailure
  1665. //
  1666. // MessageText:
  1667. //
  1668. //  The mailbox creation callback failed to rename one or more folders in mailbox %1.
  1669. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1670. //
  1671. #define evtMailboxLocalizePartialFailure 0xC0032018L
  1672. //
  1673. // MessageId: evtExpandMaster
  1674. //
  1675. // MessageText:
  1676. //
  1677. //  The processing of the recurring appointment with the subject "%1" in mailbox: %2 failed with error code %3.  This appointment will not be visible in the web client or other non-MAPI client.
  1678. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1679. //
  1680. #define evtExpandMaster                  0xC0032019L
  1681. //
  1682. // MessageId: evtExpansionInit
  1683. //
  1684. // MessageText:
  1685. //
  1686. //  A transaction failed during initialization.
  1687. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1688. //
  1689. #define evtExpansionInit                 0xC003201AL
  1690. //
  1691. // MessageId: evtFBGenerateMsg
  1692. //
  1693. // MessageText:
  1694. //
  1695. //  The calendaring agent could not publish the free/busy information for "%1" because it failed reading the registry with error: %2.  
  1696. //  The save/delete calendar operation for "%3" will not be completed.
  1697. //  Please ensure that MSExchangeFBPublish agent is started.
  1698. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1699. //
  1700. #define evtFBGenerateMsg                 0xC003201BL
  1701. //
  1702. // MessageId: evtExpansionInstExpiryInPublicMDB
  1703. //
  1704. // MessageText:
  1705. //
  1706. //  Expiry of an instance for the recurring appointment with the subject "%1" in the folder "%2" was detected.  The master for that should be expired before this instance.  
  1707. //  This instance will no longer appear in the web clients until the master is updated manually or through replication.
  1708. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1709. //
  1710. #define evtExpansionInstExpiryInPublicMDB 0x8003201CL
  1711. //
  1712. // MessageId: evtUnhandledExceptionInitialization
  1713. //
  1714. // MessageText:
  1715. //
  1716. //  Unhandled exception %1 caught during initialization of server agents.
  1717. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1718. //
  1719. #define evtUnhandledExceptionInitialization 0xC003201DL
  1720. //
  1721. // MessageId: evtUnhandledExceptionShutdown
  1722. //
  1723. // MessageText:
  1724. //
  1725. //  Unhandled exception %1 caught trying to stop server agents.
  1726. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1727. //
  1728. #define evtUnhandledExceptionShutdown    0xC003201EL
  1729. //
  1730. // MessageId: evtUnhandledExceptionInitializationMDB
  1731. //
  1732. // MessageText:
  1733. //
  1734. //  Unhandled exception %1 caught during initialization of server agents while an MDB is mounted.
  1735. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1736. //
  1737. #define evtUnhandledExceptionInitializationMDB 0xC003201FL
  1738. //
  1739. // MessageId: evtUnhandledExceptionShutdownMDB
  1740. //
  1741. // MessageText:
  1742. //
  1743. //  Unhandled exception %1 caught trying to stop server agents while an MDB is unmounted.
  1744. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1745. //
  1746. #define evtUnhandledExceptionShutdownMDB 0xC0032020L
  1747. //
  1748. // MessageId: evtUnhandledExceptionMsgSaveChanges
  1749. //
  1750. // MessageText:
  1751. //
  1752. //  Unhandled exception %1 caught during message save changes notification.
  1753. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1754. //
  1755. #define evtUnhandledExceptionMsgSaveChanges 0xC0032021L
  1756. //
  1757. // MessageId: evtUnhandledExceptionDelete
  1758. //
  1759. // MessageText:
  1760. //
  1761. //  Unhandled exception %1 caught during deletion notification.
  1762. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1763. //
  1764. #define evtUnhandledExceptionDelete      0xC0032022L
  1765. //
  1766. // MessageId: evtUnhandledExceptionQuery
  1767. //
  1768. // MessageText:
  1769. //
  1770. //  Unhandled exception %1 caught during query processing.
  1771. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1772. //
  1773. #define evtUnhandledExceptionQuery       0xC0032023L
  1774. //
  1775. // MessageId: evtUnhandledExceptionFolderSaveChanges
  1776. //
  1777. // MessageText:
  1778. //
  1779. //  Unhandled exception %1 caught during folder save changes notification.
  1780. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1781. //
  1782. #define evtUnhandledExceptionFolderSaveChanges 0xC0032024L
  1783. //
  1784. // MessageId: evtCorruptedCalendar
  1785. //
  1786. // MessageText:
  1787. //
  1788. //  The calendar for the mailbox %1 is corrupted.  This calendar needs to be recreated.
  1789. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1790. //
  1791. #define evtCorruptedCalendar             0xC0032025L
  1792. //
  1793. // MessageId: evtRebuildCalendar
  1794. //
  1795. // MessageText:
  1796. //
  1797. //  The calendar for the mailbox %1 is corrupted.  The recurrence expansion database for this calendar is being rebuilt.
  1798. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1799. //
  1800. #define evtRebuildCalendar               0x80032026L
  1801. //
  1802. // MessageId: evtCheckPrimaryCalendar
  1803. //
  1804. // MessageText:
  1805. //
  1806. //  Calendar agent failed to determine the primary calendar for mailbox: %1.
  1807. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1808. //
  1809. #define evtCheckPrimaryCalendar          0x80032027L
  1810. //
  1811. // MessageId: evtExpandMasterPF
  1812. //
  1813. // MessageText:
  1814. //
  1815. //  The processing of the recurring appointment with the subject "%1" in public folder: %2 failed with error code %3.  This appointment will not be visible in the web client or other non-MAPI client.
  1816. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1817. //
  1818. #define evtExpandMasterPF                0xC0032028L
  1819. //
  1820. // MessageId: evtCorruptedPFCalendar
  1821. //
  1822. // MessageText:
  1823. //
  1824. //  The public folder %1 is corrupted.  This calendar needs to be recreated.
  1825. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1826. //
  1827. #define evtCorruptedPFCalendar           0xC0032029L
  1828. //
  1829. // MessageId: evtRebuildPFCalendar
  1830. //
  1831. // MessageText:
  1832. //
  1833. //  The public folder %1 is corrupted.  The recurrence expansion database for this calendar is being rebuilt.
  1834. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1835. //
  1836. #define evtRebuildPFCalendar             0x8003202AL
  1837. //
  1838. // MessageId: evtMovingMailboxCallbackFailed
  1839. //
  1840. // MessageText:
  1841. //
  1842. //  Clearing the calendar instances before a move failed for mailbox %1 with error %2.
  1843. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1844. //
  1845. #define evtMovingMailboxCallbackFailed   0x8003202BL
  1846. #endif