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

模拟服务器

开发平台:

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. // MessageId: CDO_E_ROLE_NOMORE_AVAILABLE
  496. //
  497. // MessageText:
  498. //
  499. //  No more roles of the desired type are available - maxed out.
  500. //
  501. #define CDO_E_ROLE_NOMORE_AVAILABLE      0x80040236L
  502. #ifdef CDOTASKS
  503. //
  504. // MessageId: CDO_E_BAD_TASKTYPE_ONASSIGN
  505. //
  506. // MessageText:
  507. //
  508. //  The task with its current task type does not permit a call on Assign. Please call CreateUnassignedCopy instead.
  509. //
  510. #define CDO_E_BAD_TASKTYPE_ONASSIGN      0x80040237L
  511. //
  512. // MessageId: CDO_E_NOT_ASSIGNEDTO_USER
  513. //
  514. // MessageText:
  515. //
  516. //  The task is not assigned to the current user.
  517. //
  518. #define CDO_E_NOT_ASSIGNEDTO_USER        0x80040238L
  519. #endif
  520. //
  521. // MessageId: CDO_E_OUTOFDATE
  522. //
  523. // MessageText:
  524. //
  525. //  The item being accessed or manipulated is out of date.
  526. //
  527. #define CDO_E_OUTOFDATE                  0x80040239L
  528. //////////////////////////////////////////////////////////////////////////////
  529. // parameter validation error messages
  530. //
  531. // MessageId: CDO_E_ARGUMENT1
  532. //
  533. // MessageText:
  534. //
  535. //  The first argument is invalid
  536. //
  537. #define CDO_E_ARGUMENT1                  0x80044000L
  538. //
  539. // MessageId: CDO_E_ARGUMENT2
  540. //
  541. // MessageText:
  542. //
  543. //  The second argument is invalid
  544. //
  545. #define CDO_E_ARGUMENT2                  0x80044001L
  546. //
  547. // MessageId: CDO_E_ARGUMENT3
  548. //
  549. // MessageText:
  550. //
  551. //  The third argument is invalid
  552. //
  553. #define CDO_E_ARGUMENT3                  0x80044002L
  554. //
  555. // MessageId: CDO_E_ARGUMENT4
  556. //
  557. // MessageText:
  558. //
  559. //  The fourth argument is invalid
  560. //
  561. #define CDO_E_ARGUMENT4                  0x80044003L
  562. //
  563. // MessageId: CDO_E_ARGUMENT5
  564. //
  565. // MessageText:
  566. //
  567. //  The fifth argument is invalid
  568. //
  569. #define CDO_E_ARGUMENT5                  0x80044004L
  570. //////////////////////////////////////////////////////////////////////////////
  571. // Errors returned by MimeOle
  572. //
  573. // These are defined here to provide extended error info text descriptions.
  574. // CDO should never explicitly return any of these errors; they may be passed
  575. // through from MimeOle
  576. // I expect there are numerous places where these errors could still slip through:
  577. // MIME_E_NOT_FOUND
  578. //
  579. // MessageId: CDO_E_NOT_FOUND
  580. //
  581. // MessageText:
  582. //
  583. //  The requested body part was not found in this message.
  584. //
  585. #define CDO_E_NOT_FOUND                  0x800CCE05L
  586. // MIME_E_INVALID_ENCODINGTYPE
  587. // Returned when MimeOLE tries to BinHex encode.  Can also be returned if an invalid encoding
  588. // is specified, but CDO should protect from these cases.
  589. //
  590. // Also CDO returns this error when a client sets an invalid encoding
  591. //
  592. // MessageId: CDO_E_INVALID_ENCODING_TYPE
  593. //
  594. // MessageText:
  595. //
  596. //  The content encoding type is invalid.
  597. //
  598. #define CDO_E_INVALID_ENCODING_TYPE      0x800CCE1DL
  599. ///////////////////////////////////////
  600. // Headers and folder names
  601. //
  602. // MessageId = 0x1000 through 0x1fff, localized in client languages.
  603. ///////////////////////////////////////
  604. //
  605. // MessageId: IDS_ORIGINAL_MESSAGE
  606. //
  607. // MessageText:
  608. //
  609. //  -----Original Message-----%0
  610. //
  611. #define IDS_ORIGINAL_MESSAGE             0x00011000L
  612. //
  613. // MessageId: IDS_FROM
  614. //
  615. // MessageText:
  616. //
  617. //  From:%0
  618. //
  619. #define IDS_FROM                         0x00011001L
  620. //
  621. // MessageId: IDS_SENT
  622. //
  623. // MessageText:
  624. //
  625. //  Sent:%0
  626. //
  627. #define IDS_SENT                         0x00011002L
  628. //
  629. // MessageId: IDS_POSTED_AT
  630. //
  631. // MessageText:
  632. //
  633. //  Posted At:%0
  634. //
  635. #define IDS_POSTED_AT                    0x00011003L
  636. //
  637. // MessageId: IDS_TO
  638. //
  639. // MessageText:
  640. //
  641. //  To:%0
  642. //
  643. #define IDS_TO                           0x00011004L
  644. //
  645. // MessageId: IDS_CC
  646. //
  647. // MessageText:
  648. //
  649. //  Cc:%0
  650. //
  651. #define IDS_CC                           0x00011005L
  652. //
  653. // MessageId: IDS_POSTED_TO
  654. //
  655. // MessageText:
  656. //
  657. //  Posted To:%0
  658. //
  659. #define IDS_POSTED_TO                    0x00011006L
  660. //
  661. // MessageId: IDS_CONVERSATION
  662. //
  663. // MessageText:
  664. //
  665. //  Conversation:%0
  666. //
  667. #define IDS_CONVERSATION                 0x00011007L
  668. //
  669. // MessageId: IDS_SUBJECT
  670. //
  671. // MessageText:
  672. //
  673. //  Subject:%0
  674. //
  675. #define IDS_SUBJECT                      0x00011008L
  676. //
  677. // MessageId: IDS_IMPORTANCE
  678. //
  679. // MessageText:
  680. //
  681. //  Importance:%0
  682. //
  683. #define IDS_IMPORTANCE                   0x00011009L
  684. //
  685. // MessageId: IDS_ON_BEHALF_OF
  686. //
  687. // MessageText:
  688. //
  689. //  on behalf of%0
  690. //
  691. #define IDS_ON_BEHALF_OF                 0x0001100AL
  692. //
  693. // MessageId: IDS_FW
  694. //
  695. // MessageText:
  696. //
  697. //  FW:%0
  698. //
  699. #define IDS_FW                           0x0001100BL
  700. //
  701. // MessageId: IDS_RE
  702. //
  703. // MessageText:
  704. //
  705. //  RE:%0
  706. //
  707. #define IDS_RE                           0x0001100CL
  708. //
  709. // MessageId: IDS_CODEPAGE
  710. //
  711. // MessageText:
  712. //
  713. //  1252%0
  714. //
  715. #define IDS_CODEPAGE                     0x0001100DL
  716. #ifdef CDOSVR
  717. //
  718. // MessageId: IDS_CalendarFolder
  719. //
  720. // MessageText:
  721. //
  722. //  Calendar%0
  723. //
  724. #define IDS_CalendarFolder               0x0001100EL
  725. //
  726. // MessageId: IDS_ContactsFolder
  727. //
  728. // MessageText:
  729. //
  730. //  Contacts%0
  731. //
  732. #define IDS_ContactsFolder               0x0001100FL
  733. //
  734. // MessageId: IDS_DraftsFolder
  735. //
  736. // MessageText:
  737. //
  738. //  Drafts%0
  739. //
  740. #define IDS_DraftsFolder                 0x00011010L
  741. //
  742. // MessageId: IDS_JournalFolder
  743. //
  744. // MessageText:
  745. //
  746. //  Journal%0
  747. //
  748. #define IDS_JournalFolder                0x00011011L
  749. //
  750. // MessageId: IDS_NotesFolder
  751. //
  752. // MessageText:
  753. //
  754. //  Notes%0
  755. //
  756. #define IDS_NotesFolder                  0x00011012L
  757. //
  758. // MessageId: IDS_TasksFolder
  759. //
  760. // MessageText:
  761. //
  762. //  Tasks%0
  763. //
  764. #define IDS_TasksFolder                  0x00011013L
  765. #endif
  766. //
  767. // MessageId: IDS_NewFolder
  768. //
  769. // MessageText:
  770. //
  771. //  New Folder%0
  772. //
  773. #define IDS_NewFolder                    0x00011014L
  774. //
  775. // MessageId: IDS_Location
  776. //
  777. // MessageText:
  778. //
  779. //  Location:%0
  780. //
  781. #define IDS_Location                     0x00011015L
  782. //
  783. // MessageId: IDS_StartTime
  784. //
  785. // MessageText:
  786. //
  787. //  Start Time:%0
  788. //
  789. #define IDS_StartTime                    0x00011016L
  790. //
  791. // MessageId: IDS_EndTime
  792. //
  793. // MessageText:
  794. //
  795. //  End Time:%0
  796. //
  797. #define IDS_EndTime                      0x00011017L
  798. //
  799. // MessageId: IDS_TimeZone
  800. //
  801. // MessageText:
  802. //
  803. //  Time Zone:%0
  804. //
  805. #define IDS_TimeZone                     0x00011018L
  806. //
  807. // MessageId: IDS_LocalTime
  808. //
  809. // MessageText:
  810. //
  811. //  Local time%0
  812. //
  813. #define IDS_LocalTime                    0x00011019L
  814. //
  815. // MessageId: IDS_Organizer
  816. //
  817. // MessageText:
  818. //
  819. //  Organizer:%0
  820. //
  821. #define IDS_Organizer                    0x0001101AL
  822. //
  823. // MessageId: IDS_ApptType
  824. //
  825. // MessageText:
  826. //
  827. //  Type:%0
  828. //
  829. #define IDS_ApptType                     0x0001101BL
  830. //
  831. // MessageId: IDS_SingleAppt
  832. //
  833. // MessageText:
  834. //
  835. //  Single Appointment%0
  836. //
  837. #define IDS_SingleAppt                   0x0001101CL
  838. //
  839. // MessageId: IDS_SingleMtg
  840. //
  841. // MessageText:
  842. //
  843. //  Single Meeting%0
  844. //
  845. #define IDS_SingleMtg                    0x0001101DL
  846. //
  847. // MessageId: IDS_RecurAppt
  848. //
  849. // MessageText:
  850. //
  851. //  Recurring Appointment%0
  852. //
  853. #define IDS_RecurAppt                    0x0001101EL
  854. //
  855. // MessageId: IDS_RecurMtg
  856. //
  857. // MessageText:
  858. //
  859. //  Recurring Meeting%0
  860. //
  861. #define IDS_RecurMtg                     0x0001101FL
  862. ///////////////////////////////////////
  863. // time zones
  864. //
  865. // MessageId = 0x1100 through 0x11ff
  866. ///////////////////////////////////////
  867. //
  868. // MessageId: IDS_Universal
  869. //
  870. // MessageText:
  871. //
  872. //  Universal Coordinated Time%0
  873. //
  874. #define IDS_Universal                    0x00011100L
  875. //
  876. // MessageId: IDS_Greenwich
  877. //
  878. // MessageText:
  879. //
  880. //  (GMT) Greenwich Mean Time : Dublin, Edinburgh, Lisbon, London%0
  881. //
  882. #define IDS_Greenwich                    0x00011101L
  883. //
  884. // MessageId: IDS_Sarajevo
  885. //
  886. // MessageText:
  887. //
  888. //  (GMT+01:00) Sarajevo, Skopje, Sofija, Vilnius, Warsaw, Zagreb%0
  889. //
  890. #define IDS_Sarajevo                     0x00011102L
  891. //
  892. // MessageId: IDS_Paris
  893. //
  894. // MessageText:
  895. //
  896. //  (GMT+01:00) Brussels, Copenhagen, Madrid, Paris%0
  897. //
  898. #define IDS_Paris                        0x00011103L
  899. //
  900. // MessageId: IDS_Berlin
  901. //
  902. // MessageText:
  903. //
  904. //  (GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna%0
  905. //
  906. #define IDS_Berlin                       0x00011104L
  907. //
  908. // MessageId: IDS_EasternEurope
  909. //
  910. // MessageText:
  911. //
  912. //  (GMT+02:00) Bucharest%0
  913. //
  914. #define IDS_EasternEurope                0x00011105L
  915. //
  916. // MessageId: IDS_Prague
  917. //
  918. // MessageText:
  919. //
  920. //  (GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague%0
  921. //
  922. #define IDS_Prague                       0x00011106L
  923. //
  924. // MessageId: IDS_Athens
  925. //
  926. // MessageText:
  927. //
  928. //  (GMT+02:00) Athens, Istanbul, Minsk%0
  929. //
  930. #define IDS_Athens                       0x00011107L
  931. //
  932. // MessageId: IDS_Brasilia
  933. //
  934. // MessageText:
  935. //
  936. //  (GMT-03:00) Brasilia%0
  937. //
  938. #define IDS_Brasilia                     0x00011108L
  939. //
  940. // MessageId: IDS_Atlantic
  941. //
  942. // MessageText:
  943. //
  944. //  (GMT-04:00) Atlantic Time (Canada)%0
  945. //
  946. #define IDS_Atlantic                     0x00011109L
  947. //
  948. // MessageId: IDS_Eastern
  949. //
  950. // MessageText:
  951. //
  952. //  (GMT-05:00) Eastern Time (US & Canada)%0
  953. //
  954. #define IDS_Eastern                      0x0001110AL
  955. //
  956. // MessageId: IDS_Central
  957. //
  958. // MessageText:
  959. //
  960. //  (GMT-06:00) Central Time (US & Canada)%0
  961. //
  962. #define IDS_Central                      0x0001110BL
  963. //
  964. // MessageId: IDS_Mountain
  965. //
  966. // MessageText:
  967. //
  968. //  (GMT-07:00) Mountain Time (US & Canada)%0
  969. //
  970. #define IDS_Mountain                     0x0001110CL
  971. //
  972. // MessageId: IDS_Pacific
  973. //
  974. // MessageText:
  975. //
  976. //  (GMT-08:00) Pacific Time (US & Canada); Tijuana%0
  977. //
  978. #define IDS_Pacific                      0x0001110DL
  979. //
  980. // MessageId: IDS_Alaska
  981. //
  982. // MessageText:
  983. //
  984. //  (GMT-09:00) Alaska%0
  985. //
  986. #define IDS_Alaska                       0x0001110EL
  987. //
  988. // MessageId: IDS_Hawaii
  989. //
  990. // MessageText:
  991. //
  992. //  (GMT-10:00) Hawaii%0
  993. //
  994. #define IDS_Hawaii                       0x0001110FL
  995. //
  996. // MessageId: IDS_Midway
  997. //
  998. // MessageText:
  999. //
  1000. //  (GMT-11:00) Midway Island, Samoa%0
  1001. //
  1002. #define IDS_Midway                       0x00011110L
  1003. //
  1004. // MessageId: IDS_Wellington
  1005. //
  1006. // MessageText:
  1007. //
  1008. //  (GMT+12:00) Auckland, Wellington%0
  1009. //
  1010. #define IDS_Wellington                   0x00011111L
  1011. //
  1012. // MessageId: IDS_Brisbane
  1013. //
  1014. // MessageText:
  1015. //
  1016. //  (GMT+10:00) Brisbane%0
  1017. //
  1018. #define IDS_Brisbane                     0x00011112L
  1019. //
  1020. // MessageId: IDS_Adelaide
  1021. //
  1022. // MessageText:
  1023. //
  1024. //  (GMT+09:30) Adelaide%0
  1025. //
  1026. #define IDS_Adelaide                     0x00011113L
  1027. //
  1028. // MessageId: IDS_Tokyo
  1029. //
  1030. // MessageText:
  1031. //
  1032. //  (GMT+09:00) Osaka, Sapporo, Tokyo%0
  1033. //
  1034. #define IDS_Tokyo                        0x00011114L
  1035. //
  1036. // MessageId: IDS_Singapore
  1037. //
  1038. // MessageText:
  1039. //
  1040. //  (GMT+08:00) Kuala Lumpur, Singapore%0
  1041. //
  1042. #define IDS_Singapore                    0x00011115L
  1043. //
  1044. // MessageId: IDS_Bangkok
  1045. //
  1046. // MessageText:
  1047. //
  1048. //  (GMT+07:00) Bangkok, Hanoi, Jakarta%0
  1049. //
  1050. #define IDS_Bangkok                      0x00011116L
  1051. //
  1052. // MessageId: IDS_Bombay
  1053. //
  1054. // MessageText:
  1055. //
  1056. //  (GMT+05:30) Kolkata, Chennai, Mumbai, New Delhi%0
  1057. //
  1058. #define IDS_Bombay                       0x00011117L
  1059. //
  1060. // MessageId: IDS_AbuDhabi
  1061. //
  1062. // MessageText:
  1063. //
  1064. //  (GMT+04:00) Abu Dhabi, Muscat%0
  1065. //
  1066. #define IDS_AbuDhabi                     0x00011118L
  1067. //
  1068. // MessageId: IDS_Tehran
  1069. //
  1070. // MessageText:
  1071. //
  1072. //  (GMT+03:30) Tehran%0
  1073. //
  1074. #define IDS_Tehran                       0x00011119L
  1075. //
  1076. // MessageId: IDS_Baghdad
  1077. //
  1078. // MessageText:
  1079. //
  1080. //  (GMT+03:00) Baghdad%0
  1081. //
  1082. #define IDS_Baghdad                      0x0001111AL
  1083. //
  1084. // MessageId: IDS_Israel
  1085. //
  1086. // MessageText:
  1087. //
  1088. //  (GMT+02:00) Jerusalem%0
  1089. //
  1090. #define IDS_Israel                       0x0001111BL
  1091. //
  1092. // MessageId: IDS_Newfoundland
  1093. //
  1094. // MessageText:
  1095. //
  1096. //  (GMT-03:30) Newfoundland%0
  1097. //
  1098. #define IDS_Newfoundland                 0x0001111CL
  1099. //
  1100. // MessageId: IDS_Azores
  1101. //
  1102. // MessageText:
  1103. //
  1104. //  (GMT-01:00) Azores%0
  1105. //
  1106. #define IDS_Azores                       0x0001111DL
  1107. //
  1108. // MessageId: IDS_MidAtlantic
  1109. //
  1110. // MessageText:
  1111. //
  1112. //  (GMT-02:00) Mid-Atlantic%0
  1113. //
  1114. #define IDS_MidAtlantic                  0x0001111EL
  1115. //
  1116. // MessageId: IDS_Monrovia
  1117. //
  1118. // MessageText:
  1119. //
  1120. //  (GMT) Casablanca, Monrovia%0
  1121. //
  1122. #define IDS_Monrovia                     0x0001111FL
  1123. //
  1124. // MessageId: IDS_BuenosAires
  1125. //
  1126. // MessageText:
  1127. //
  1128. //  (GMT-03:00) Buenos Aires, Georgetown%0
  1129. //
  1130. #define IDS_BuenosAires                  0x00011120L
  1131. //
  1132. // MessageId: IDS_Caracas
  1133. //
  1134. // MessageText:
  1135. //
  1136. //  (GMT-04:00) Caracas, La Paz%0
  1137. //
  1138. #define IDS_Caracas                      0x00011121L
  1139. //
  1140. // MessageId: IDS_Indiana
  1141. //
  1142. // MessageText:
  1143. //
  1144. //  (GMT-05:00) Indiana (East)%0
  1145. //
  1146. #define IDS_Indiana                      0x00011122L
  1147. //
  1148. // MessageId: IDS_Bogota
  1149. //
  1150. // MessageText:
  1151. //
  1152. //  (GMT-05:00) Bogota, Lima, Quito%0
  1153. //
  1154. #define IDS_Bogota                       0x00011123L
  1155. //
  1156. // MessageId: IDS_Saskatchewan
  1157. //
  1158. // MessageText:
  1159. //
  1160. //  (GMT-06:00) Saskatchewan%0
  1161. //
  1162. #define IDS_Saskatchewan                 0x00011124L
  1163. //
  1164. // MessageId: IDS_Mexico
  1165. //
  1166. // MessageText:
  1167. //
  1168. //  (GMT-06:00) Mexico City%0
  1169. //
  1170. #define IDS_Mexico                       0x00011125L
  1171. //
  1172. // MessageId: IDS_Arizona
  1173. //
  1174. // MessageText:
  1175. //
  1176. //  (GMT-07:00) Arizona%0
  1177. //
  1178. #define IDS_Arizona                      0x00011126L
  1179. //
  1180. // MessageId: IDS_Eniwetok
  1181. //
  1182. // MessageText:
  1183. //
  1184. //  (GMT-12:00) Eniwetok, Kwajalein%0
  1185. //
  1186. #define IDS_Eniwetok                     0x00011127L
  1187. //
  1188. // MessageId: IDS_Fiji
  1189. //
  1190. // MessageText:
  1191. //
  1192. //  (GMT+12:00) Fiji, Kamchatka, Marshall Is.%0
  1193. //
  1194. #define IDS_Fiji                         0x00011128L
  1195. //
  1196. // MessageId: IDS_Magadan
  1197. //
  1198. // MessageText:
  1199. //
  1200. //  (GMT+11:00) Magadan, Solomon Is., New Caledonia%0
  1201. //
  1202. #define IDS_Magadan                      0x00011129L
  1203. //
  1204. // MessageId: IDS_Hobart
  1205. //
  1206. // MessageText:
  1207. //
  1208. //  (GMT+10:00) Hobart%0
  1209. //
  1210. #define IDS_Hobart                       0x0001112AL
  1211. //
  1212. // MessageId: IDS_Guam
  1213. //
  1214. // MessageText:
  1215. //
  1216. //  (GMT+10:00) Guam, Port Moresby%0
  1217. //
  1218. #define IDS_Guam                         0x0001112BL
  1219. //
  1220. // MessageId: IDS_Darwin
  1221. //
  1222. // MessageText:
  1223. //
  1224. //  (GMT+09:30) Darwin%0
  1225. //
  1226. #define IDS_Darwin                       0x0001112CL
  1227. //
  1228. // MessageId: IDS_Beijing
  1229. //
  1230. // MessageText:
  1231. //
  1232. //  (GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi%0
  1233. //
  1234. #define IDS_Beijing                      0x0001112DL
  1235. //
  1236. // MessageId: IDS_Almaty
  1237. //
  1238. // MessageText:
  1239. //
  1240. //  (GMT+06:00) Almaty, Novosibirsk%0
  1241. //
  1242. #define IDS_Almaty                       0x0001112EL
  1243. //
  1244. // MessageId: IDS_Islamabad
  1245. //
  1246. // MessageText:
  1247. //
  1248. //  (GMT+05:00) Islamabad, Karachi, Tashkent%0
  1249. //
  1250. #define IDS_Islamabad                    0x0001112FL
  1251. //
  1252. // MessageId: IDS_Kabul
  1253. //
  1254. // MessageText:
  1255. //
  1256. //  (GMT+04:30) Kabul%0
  1257. //
  1258. #define IDS_Kabul                        0x00011130L
  1259. //
  1260. // MessageId: IDS_Cairo
  1261. //
  1262. // MessageText:
  1263. //
  1264. //  (GMT+02:00) Cairo%0
  1265. //
  1266. #define IDS_Cairo                        0x00011131L
  1267. //
  1268. // MessageId: IDS_Harare
  1269. //
  1270. // MessageText:
  1271. //
  1272. //  (GMT+02:00) Harare, Pretoria%0
  1273. //
  1274. #define IDS_Harare                       0x00011132L
  1275. //
  1276. // MessageId: IDS_Moscow
  1277. //
  1278. // MessageText:
  1279. //
  1280. //  (GMT+03:00) Moscow, St. Petersburg, Volgograd%0
  1281. //
  1282. #define IDS_Moscow                       0x00011133L
  1283. //
  1284. // MessageId: IDS_CapeVerde
  1285. //
  1286. // MessageText:
  1287. //
  1288. //  (GMT-01:00) Cape Verde Is.%0
  1289. //
  1290. #define IDS_CapeVerde                    0x00011134L
  1291. //
  1292. // MessageId: IDS_Caucasus
  1293. //
  1294. // MessageText:
  1295. //
  1296. //  (GMT+04:00) Baku, Tbilisi, Yerevan%0
  1297. //
  1298. #define IDS_Caucasus                     0x00011135L
  1299. //
  1300. // MessageId: IDS_CentralAmerica
  1301. //
  1302. // MessageText:
  1303. //
  1304. //  (GMT-06:00) Central America%0
  1305. //
  1306. #define IDS_CentralAmerica               0x00011136L
  1307. //
  1308. // MessageId: IDS_EastAfrica
  1309. //
  1310. // MessageText:
  1311. //
  1312. //  (GMT+03:00) Nairobi%0
  1313. //
  1314. #define IDS_EastAfrica                   0x00011137L
  1315. //
  1316. // MessageId: IDS_Melbourne
  1317. //
  1318. // MessageText:
  1319. //
  1320. //  (GMT+10:00) Canberra, Melbourne, Sydney%0
  1321. //
  1322. #define IDS_Melbourne                    0x00011138L
  1323. //
  1324. // MessageId: IDS_Ekaterinburg
  1325. //
  1326. // MessageText:
  1327. //
  1328. //  (GMT+05:00) Ekaterinburg%0
  1329. //
  1330. #define IDS_Ekaterinburg                 0x00011139L
  1331. //
  1332. // MessageId: IDS_Helsinki
  1333. //
  1334. // MessageText:
  1335. //
  1336. //  (GMT+02:00) Helsinki, Riga, Tallinn%0
  1337. //
  1338. #define IDS_Helsinki                     0x0001113AL
  1339. //
  1340. // MessageId: IDS_Greenland
  1341. //
  1342. // MessageText:
  1343. //
  1344. //  (GMT-03:00) Greenland%0
  1345. //
  1346. #define IDS_Greenland                    0x0001113BL
  1347. //
  1348. // MessageId: IDS_Rangoon
  1349. //
  1350. // MessageText:
  1351. //
  1352. //  (GMT+06:30) Rangoon%0
  1353. //
  1354. #define IDS_Rangoon                      0x0001113CL
  1355. //
  1356. // MessageId: IDS_Nepal
  1357. //
  1358. // MessageText:
  1359. //
  1360. //  (GMT+05:45) Kathmandu%0
  1361. //
  1362. #define IDS_Nepal                        0x0001113DL
  1363. //
  1364. // MessageId: IDS_Irkutsk
  1365. //
  1366. // MessageText:
  1367. //
  1368. //  (GMT+08:00) Irkutsk, Ulaan Bataar%0
  1369. //
  1370. #define IDS_Irkutsk                      0x0001113EL
  1371. //
  1372. // MessageId: IDS_Krasnoyarsk
  1373. //
  1374. // MessageText:
  1375. //
  1376. //  (GMT+07:00) Krasnoyarsk%0
  1377. //
  1378. #define IDS_Krasnoyarsk                  0x0001113FL
  1379. //
  1380. // MessageId: IDS_Santiago
  1381. //
  1382. // MessageText:
  1383. //
  1384. //  (GMT-04:00) Santiago%0
  1385. //
  1386. #define IDS_Santiago                     0x00011140L
  1387. //
  1388. // MessageId: IDS_SriLanka
  1389. //
  1390. // MessageText:
  1391. //
  1392. //  (GMT+06:00) Sri Jayawardenepura%0
  1393. //
  1394. #define IDS_SriLanka                     0x00011141L
  1395. //
  1396. // MessageId: IDS_Tonga
  1397. //
  1398. // MessageText:
  1399. //
  1400. //  (GMT+13:00) Nuku'alofa%0
  1401. //
  1402. #define IDS_Tonga                        0x00011142L
  1403. //
  1404. // MessageId: IDS_Vladivostok
  1405. //
  1406. // MessageText:
  1407. //
  1408. //  (GMT+10:00) Vladivostok%0
  1409. //
  1410. #define IDS_Vladivostok                  0x00011143L
  1411. //
  1412. // MessageId: IDS_WestCentralAfrica
  1413. //
  1414. // MessageText:
  1415. //
  1416. //  (GMT+01:00) West Central Africa%0
  1417. //
  1418. #define IDS_WestCentralAfrica            0x00011144L
  1419. //
  1420. // MessageId: IDS_Yakutsk
  1421. //
  1422. // MessageText:
  1423. //
  1424. //  (GMT+09:00) Yakutsk%0
  1425. //
  1426. #define IDS_Yakutsk                      0x00011145L
  1427. //
  1428. // MessageId: IDS_Dhaka
  1429. //
  1430. // MessageText:
  1431. //
  1432. //  (GMT+06:00) Astana, Dhaka%0
  1433. //
  1434. #define IDS_Dhaka                        0x00011146L
  1435. //
  1436. // MessageId: IDS_Seoul
  1437. //
  1438. // MessageText:
  1439. //
  1440. //  (GMT+09:00) Seoul%0
  1441. //
  1442. #define IDS_Seoul                        0x00011147L
  1443. //
  1444. // MessageId: IDS_Perth
  1445. //
  1446. // MessageText:
  1447. //
  1448. //  (GMT+08:00) Perth%0
  1449. //
  1450. #define IDS_Perth                        0x00011148L
  1451. //
  1452. // MessageId: IDS_Arab
  1453. //
  1454. // MessageText:
  1455. //
  1456. //  (GMT+03:00) Kuwait, Riyadh%0
  1457. //
  1458. #define IDS_Arab                         0x00011149L
  1459. //
  1460. // MessageId: IDS_Taipei
  1461. //
  1462. // MessageText:
  1463. //
  1464. //  (GMT+08:00) Taipei%0
  1465. //
  1466. #define IDS_Taipei                       0x0001114AL
  1467. //
  1468. // MessageId: IDS_Sydney2000
  1469. //
  1470. // MessageText:
  1471. //
  1472. //  (GMT+10:00) Canberra, Melbourne, Sydney (Year 2000 only)%0
  1473. //
  1474. #define IDS_Sydney2000                   0x0001114BL
  1475. ///////////////////////////////////////
  1476. // EXCDO messages
  1477. //
  1478. // MessageId = 0x2000 through 0x2fff, localized in server languages.
  1479. ///////////////////////////////////////
  1480. #ifdef CDOSVR
  1481. //
  1482. // MessageId: evtMethodCalled
  1483. //
  1484. // MessageText:
  1485. //
  1486. //  %1 Event on %2 called with Flags %3
  1487. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1488. //
  1489. #define evtMethodCalled                  0x00032000L
  1490. //
  1491. // MessageId: evtMethodReturning
  1492. //
  1493. // MessageText:
  1494. //
  1495. //  %1 Event Method is returning with HRESULT %2
  1496. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1497. //
  1498. #define evtMethodReturning               0x00032001L
  1499. //
  1500. // MessageId: evtIsAborting
  1501. //
  1502. // MessageText:
  1503. //
  1504. //  %1 Event Method is halting, HRESULT %2
  1505. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1506. //
  1507. #define evtIsAborting                    0xC0032002L
  1508. //
  1509. // MessageId: evtExpansionInitialized
  1510. //
  1511. // MessageText:
  1512. //
  1513. //  Calendaring agent is initialized successfully.
  1514. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1515. //
  1516. #define evtExpansionInitialized          0x00032003L
  1517. //
  1518. // MessageId: evtExpansionUnInitialized
  1519. //
  1520. // MessageText:
  1521. //
  1522. //  Calendaring agent is stopping successfully.
  1523. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1524. //
  1525. #define evtExpansionUnInitialized        0x00032004L
  1526. //
  1527. // MessageId: evtExpansionInitializeFailed
  1528. //
  1529. // MessageText:
  1530. //
  1531. //  Calendaring agent failed to initialize with error %1.
  1532. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1533. //
  1534. #define evtExpansionInitializeFailed     0xC0032005L
  1535. //
  1536. // MessageId: evtExpansionRegisterFailed
  1537. //
  1538. // MessageText:
  1539. //
  1540. //  Calendaring recurring item expansion failed to register for notifications for MDB %1.
  1541. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1542. //
  1543. #define evtExpansionRegisterFailed       0xC0032006L
  1544. //
  1545. // MessageId: evtExpansionMessageSaveChangesFailed
  1546. //
  1547. // MessageText:
  1548. //
  1549. //  Calendaring agent failed in message save notification with error %1 on %2: %3.
  1550. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1551. //
  1552. #define evtExpansionMessageSaveChangesFailed 0xC0032007L
  1553. //
  1554. // MessageId: evtExpansionMessageDeleteFailed
  1555. //
  1556. // MessageText:
  1557. //
  1558. //  Calendaring agent failed in message delete notification with error %1 on %2: %3.
  1559. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1560. //
  1561. #define evtExpansionMessageDeleteFailed  0xC0032008L
  1562. //
  1563. // MessageId: evtExpansionFolderSaveChangesFailed
  1564. //
  1565. // MessageText:
  1566. //
  1567. //  Calendaring agent failed in folder save notification with error %1 on %2: %3.
  1568. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1569. //
  1570. #define evtExpansionFolderSaveChangesFailed 0xC0032009L
  1571. //
  1572. // MessageId: evtExpansionTooManyInstancesPerDay
  1573. //
  1574. // MessageText:
  1575. //
  1576. //  Calendaring agent truncated expansion after %1 instances per day.
  1577. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1578. //
  1579. #define evtExpansionTooManyInstancesPerDay 0x8003200AL
  1580. //
  1581. // MessageId: evtMailboxCreateTotalFailure
  1582. //
  1583. // MessageText:
  1584. //
  1585. //  The mailbox creation callback failed to create any folders in mailbox %1.
  1586. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1587. //
  1588. #define evtMailboxCreateTotalFailure     0xC003200BL
  1589. //
  1590. // MessageId: evtMailboxCreatePartialFailure
  1591. //
  1592. // MessageText:
  1593. //
  1594. //  The mailbox creation callback failed to create one or more folders in mailbox %1.
  1595. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1596. //
  1597. #define evtMailboxCreatePartialFailure   0xC003200CL
  1598. //
  1599. // MessageId: evtUninitImplRestFailed
  1600. //
  1601. // MessageText:
  1602. //
  1603. //  Calendaring agent failed to uninitialize implied restriction with error %1 on %2: %3.
  1604. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1605. //
  1606. #define evtUninitImplRestFailed          0xC003200DL
  1607. //
  1608. // MessageId: evtExpandSavingAppt
  1609. //
  1610. // MessageText:
  1611. //
  1612. //  Calendaring agent failed with error code %1 while saving appointment.
  1613. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1614. //
  1615. #define evtExpandSavingAppt              0xC003200EL
  1616. //
  1617. // MessageId: evtExpandDeletingAppt
  1618. //
  1619. // MessageText:
  1620. //
  1621. //  Calendaring agent failed with error code %1 while deleting appointment.
  1622. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1623. //
  1624. #define evtExpandDeletingAppt            0xC003200FL
  1625. //
  1626. // MessageId: evtExpandQuery
  1627. //
  1628. // MessageText:
  1629. //
  1630. //  Calendaring agent failed with error code %1 while expanding recurring appointments.
  1631. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1632. //
  1633. #define evtExpandQuery                   0xC0032010L
  1634. //
  1635. // MessageId: evtExpandFolderSetProps
  1636. //
  1637. // MessageText:
  1638. //
  1639. //  Calendaring agent failed with error code %1 while cleaning up the calendar.
  1640. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1641. //
  1642. #define evtExpandFolderSetProps          0xC0032011L
  1643. //
  1644. // MessageId: evtRegistryFailure
  1645. //
  1646. // MessageText:
  1647. //
  1648. //  Calendaring agent failed to open registry with error code %1.
  1649. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1650. //
  1651. #define evtRegistryFailure               0xC0032012L
  1652. //
  1653. // MessageId: evtExpStat
  1654. //
  1655. // MessageText:
  1656. //
  1657. //  Calendaring agent failed in the following function with error code: %1.
  1658. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1659. //
  1660. #define evtExpStat                       0xC0032013L
  1661. //
  1662. // MessageId: evtDumpFcn
  1663. //
  1664. // MessageText:
  1665. //
  1666. //  Calendaring agent failed in the following function with error code %1.
  1667. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1668. //
  1669. #define evtDumpFcn                       0xC0032014L
  1670. //
  1671. // MessageId: evtSaveDeleteFailFBUpdate
  1672. //
  1673. // MessageText:
  1674. //
  1675. //  Calendaring agent failed to update the free/busy cache during an appointment save or delete operation.
  1676. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1677. //
  1678. #define evtSaveDeleteFailFBUpdate        0xC0032015L
  1679. //
  1680. // MessageId: evtProcessingQueryCallback
  1681. //
  1682. // MessageText:
  1683. //
  1684. //  Calendaring agent failed to update the free/busy cache and internal data while processing a query.
  1685. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1686. //
  1687. #define evtProcessingQueryCallback       0xC0032016L
  1688. //
  1689. // MessageId: evtMailboxLocalizeTotalFailure
  1690. //
  1691. // MessageText:
  1692. //
  1693. //  The mailbox creation callback failed to rename any folders in mailbox %1.
  1694. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1695. //
  1696. #define evtMailboxLocalizeTotalFailure   0xC0032017L
  1697. //
  1698. // MessageId: evtMailboxLocalizePartialFailure
  1699. //
  1700. // MessageText:
  1701. //
  1702. //  The mailbox creation callback failed to rename one or more folders in mailbox %1.
  1703. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1704. //
  1705. #define evtMailboxLocalizePartialFailure 0xC0032018L
  1706. //
  1707. // MessageId: evtExpandMaster
  1708. //
  1709. // MessageText:
  1710. //
  1711. //  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.
  1712. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1713. //
  1714. #define evtExpandMaster                  0xC0032019L
  1715. //
  1716. // MessageId: evtExpansionInit
  1717. //
  1718. // MessageText:
  1719. //
  1720. //  A transaction failed during initialization.
  1721. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1722. //
  1723. #define evtExpansionInit                 0xC003201AL
  1724. //
  1725. // MessageId: evtFBGenerateMsg
  1726. //
  1727. // MessageText:
  1728. //
  1729. //  The calendaring agent could not publish the free/busy information for "%1" because it failed reading the registry with error: %2.  
  1730. //  The save/delete calendar operation for "%3" will not be completed.
  1731. //  Please ensure that MSExchangeFBPublish agent is started.
  1732. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1733. //
  1734. #define evtFBGenerateMsg                 0xC003201BL
  1735. //
  1736. // MessageId: evtExpansionInstExpiryInPublicMDB
  1737. //
  1738. // MessageText:
  1739. //
  1740. //  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.  
  1741. //  This instance will no longer appear in the web clients until the master is updated manually or through replication.
  1742. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1743. //
  1744. #define evtExpansionInstExpiryInPublicMDB 0x8003201CL
  1745. //
  1746. // MessageId: evtUnhandledExceptionInitialization
  1747. //
  1748. // MessageText:
  1749. //
  1750. //  Unhandled exception %1 caught during initialization of server agents.
  1751. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1752. //
  1753. #define evtUnhandledExceptionInitialization 0xC003201DL
  1754. //
  1755. // MessageId: evtUnhandledExceptionShutdown
  1756. //
  1757. // MessageText:
  1758. //
  1759. //  Unhandled exception %1 caught trying to stop server agents.
  1760. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1761. //
  1762. #define evtUnhandledExceptionShutdown    0xC003201EL
  1763. //
  1764. // MessageId: evtUnhandledExceptionInitializationMDB
  1765. //
  1766. // MessageText:
  1767. //
  1768. //  Unhandled exception %1 caught during initialization of server agents while an MDB is mounted.
  1769. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1770. //
  1771. #define evtUnhandledExceptionInitializationMDB 0xC003201FL
  1772. //
  1773. // MessageId: evtUnhandledExceptionShutdownMDB
  1774. //
  1775. // MessageText:
  1776. //
  1777. //  Unhandled exception %1 caught trying to stop server agents while an MDB is unmounted.
  1778. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1779. //
  1780. #define evtUnhandledExceptionShutdownMDB 0xC0032020L
  1781. //
  1782. // MessageId: evtUnhandledExceptionMsgSaveChanges
  1783. //
  1784. // MessageText:
  1785. //
  1786. //  Unhandled exception %1 caught during message save changes notification.
  1787. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1788. //
  1789. #define evtUnhandledExceptionMsgSaveChanges 0xC0032021L
  1790. //
  1791. // MessageId: evtUnhandledExceptionDelete
  1792. //
  1793. // MessageText:
  1794. //
  1795. //  Unhandled exception %1 caught during deletion notification.
  1796. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1797. //
  1798. #define evtUnhandledExceptionDelete      0xC0032022L
  1799. //
  1800. // MessageId: evtUnhandledExceptionQuery
  1801. //
  1802. // MessageText:
  1803. //
  1804. //  Unhandled exception %1 caught during query processing.
  1805. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1806. //
  1807. #define evtUnhandledExceptionQuery       0xC0032023L
  1808. //
  1809. // MessageId: evtUnhandledExceptionFolderSaveChanges
  1810. //
  1811. // MessageText:
  1812. //
  1813. //  Unhandled exception %1 caught during folder save changes notification.
  1814. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1815. //
  1816. #define evtUnhandledExceptionFolderSaveChanges 0xC0032024L
  1817. //
  1818. // MessageId: evtCorruptedCalendar
  1819. //
  1820. // MessageText:
  1821. //
  1822. //  The calendar for the mailbox %1 is corrupted.  This calendar needs to be recreated.
  1823. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1824. //
  1825. #define evtCorruptedCalendar             0xC0032025L
  1826. //
  1827. // MessageId: evtRebuildCalendar
  1828. //
  1829. // MessageText:
  1830. //
  1831. //  An inconsistency was detected in %2: %3.  The calendar is being repaired.  If other errors occur with this calendar, please view the calendar using Microsoft Outlook Web Access.  If a problem persists, please recreate the calendar or the containing mailbox.
  1832. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1833. //
  1834. #define evtRebuildCalendar               0x80032026L
  1835. //
  1836. // MessageId: evtCheckPrimaryCalendar
  1837. //
  1838. // MessageText:
  1839. //
  1840. //  Calendar agent failed to determine the primary calendar for mailbox: %1.
  1841. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1842. //
  1843. #define evtCheckPrimaryCalendar          0x80032027L
  1844. //
  1845. // MessageId: evtExpandMasterPF
  1846. //
  1847. // MessageText:
  1848. //
  1849. //  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.
  1850. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1851. //
  1852. #define evtExpandMasterPF                0xC0032028L
  1853. //
  1854. // MessageId: evtCorruptedPFCalendar
  1855. //
  1856. // MessageText:
  1857. //
  1858. //  The public folder %1 is corrupted.  This calendar needs to be recreated.
  1859. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1860. //
  1861. #define evtCorruptedPFCalendar           0xC0032029L
  1862. //
  1863. // MessageId: evtRebuildPFCalendar
  1864. //
  1865. // MessageText:
  1866. //
  1867. //  An inconsistency was detected in %1.  The calendar is being repaired.  If other errors occur with this calendar, please view the calendar using Microsoft Outlook Web Access.  If a problem persists, please recreate the public folder calendar.
  1868. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1869. //
  1870. #define evtRebuildPFCalendar             0x8003202AL
  1871. //
  1872. // MessageId: evtMovingMailboxCallbackFailed
  1873. //
  1874. // MessageText:
  1875. //
  1876. //  Clearing the calendar instances before a move failed for mailbox %1 with error %2.
  1877. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1878. //
  1879. #define evtMovingMailboxCallbackFailed   0x8003202BL
  1880. //
  1881. // MessageId: evtGetMsgClassFromMaster
  1882. //
  1883. // MessageText:
  1884. //
  1885. //  Calendaring agent failed with error %1 while attempting to retrieve the message class for a recurring appointment.  The message class for the instance
  1886. //  when viewed with the Web Client will not be the same as the one in the series if it is not IPM.Appointment.
  1887. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1888. //
  1889. #define evtGetMsgClassFromMaster         0x8003202CL
  1890. //
  1891. // MessageId: evtOpenURL
  1892. //
  1893. // MessageText:
  1894. //
  1895. //  Calendaring agent failed with error %1 while attempting to open the status message. If the user is a delegate, the access rights to the mailbox might
  1896. //  not be set up correctly.  Otherwise, the calendar for this mailbox could be corrupted. This could be fixed
  1897. //  by moving the mailbox to another Exchange server, or exporting the calendar to a Personal Folder File (.PST), and re-importing this into a new calendar.
  1898. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1899. //
  1900. #define evtOpenURL                       0x8003202DL
  1901. //
  1902. // MessageId: evtStatusMsgSent
  1903. //
  1904. // MessageText:
  1905. //
  1906. //  The calendaring data message for %1: %2 has been sent to %3.
  1907. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1908. //
  1909. #define evtStatusMsgSent                 0x4003202EL
  1910. //
  1911. // MessageId: evtSaveInvalidStartAppt
  1912. //
  1913. // MessageText:
  1914. //
  1915. //  An appointment with the subject "%1" was saved to mailbox %2. The start time is missing, so the calendaring agent cannot publish the free/busy information for this appointment. To correct this, please delete the appointment and recreate it.
  1916. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1917. //
  1918. #define evtSaveInvalidStartAppt          0xC003202FL
  1919. //
  1920. // MessageId: evtSaveInvalidEndAppt
  1921. //
  1922. // MessageText:
  1923. //
  1924. //  An appointment with the subject "%1" was saved to mailbox %2. The end time and duration are missing. For the purposes of publishing free/busy information, this appointment has a duration of zero minutes. To correct this, please delete the appointment and recreate it.
  1925. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1926. //
  1927. #define evtSaveInvalidEndAppt            0x80032030L
  1928. //
  1929. // MessageId: evtSaveDurationTooLong
  1930. //
  1931. // MessageText:
  1932. //
  1933. //  An attempt was made to save an appointment with the subject "%1" to mailbox %2. The duration of the appointment was too large, so it was not saved.
  1934. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1935. //
  1936. #define evtSaveDurationTooLong           0x80032031L
  1937. //
  1938. // MessageId: evtModifyInvalidAppt
  1939. //
  1940. // MessageText:
  1941. //
  1942. //  An existing appointment with the subject "%1" in mailbox %2 was modified. The start time, or both the duration and end time of the existing appointment were missing.
  1943. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1944. //
  1945. #define evtModifyInvalidAppt             0x80032032L
  1946. //
  1947. // MessageId: evtModifyDurationTooLong
  1948. //
  1949. // MessageText:
  1950. //
  1951. //  An existing appointment with the subject "%1" in mailbox %2 was modified. The duration of the existing appointment was too large. Free/busy publishing may not be accurate.
  1952. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1953. //
  1954. #define evtModifyDurationTooLong         0x80032033L
  1955. //
  1956. // MessageId: evtDeleteInvalidAppt
  1957. //
  1958. // MessageText:
  1959. //
  1960. //  The existing appointment with the subject "%1" in mailbox %2 was deleted. The start time, or both the duration and end time were missing.
  1961. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1962. //
  1963. #define evtDeleteInvalidAppt             0x80032034L
  1964. //
  1965. // MessageId: evtDeleteDurationTooLong
  1966. //
  1967. // MessageText:
  1968. //
  1969. //  The existing appointment with the subject "%1" in mailbox %2 was deleted. The duration of the existing appointment was too large. Free/busy publishing may not be accurate.
  1970. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1971. //
  1972. #define evtDeleteDurationTooLong         0x80032035L
  1973. //
  1974. // MessageId: evtBindToInvalidStartAppt
  1975. //
  1976. // MessageText:
  1977. //
  1978. //  The calendaring agent cannot bind to the appointment with the subject "%1" in mailbox %2 because the appointment is missing a start time. The calendaring agent will not publish free/busy information for this appointment. To correct this, please delete the appointment and recreate it.
  1979. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1980. //
  1981. #define evtBindToInvalidStartAppt        0xC0032036L
  1982. //
  1983. // MessageId: evtBindToInvalidEndAppt
  1984. //
  1985. // MessageText:
  1986. //
  1987. //  The calendaring agent did bind to the appointment with the subject "%1" in mailbox %2, but the appointment is missing an end time and duration. For the purposes of publishing free/busy information, this appointment has a duration of zero minutes. To correct this, please delete the appointment and recreate it.
  1988. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1989. //
  1990. #define evtBindToInvalidEndAppt          0x80032037L
  1991. //
  1992. // MessageId: evtReloadLogType
  1993. //
  1994. // MessageText:
  1995. //
  1996. //  The EXCDO logging level has been reloaded from the registry and is now set to 0x%1.
  1997. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1998. //
  1999. #define evtReloadLogType                 0x40032038L
  2000. //
  2001. // MessageId: evtBackgroundStarted
  2002. //
  2003. // MessageText:
  2004. //
  2005. //  Calendaring agent has successfully started the background thread.
  2006. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2007. //
  2008. #define evtBackgroundStarted             0x40032039L
  2009. //
  2010. // MessageId: evtBackgroundStartFailed
  2011. //
  2012. // MessageText:
  2013. //
  2014. //  Calendaring agent has failed to start the background thread due to %1.  
  2015. //  Rendering of large calendars with the Web client will be slower.
  2016. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2017. //
  2018. #define evtBackgroundStartFailed         0x8003203AL
  2019. //
  2020. // MessageId: evtBackgroundProcessing
  2021. //
  2022. // MessageText:
  2023. //
  2024. //  Background calendaring agent is processing the calendar (%1) in the mailbox (%2) in the MDB (%3).
  2025. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2026. //
  2027. #define evtBackgroundProcessing          0x4003203BL
  2028. //
  2029. // MessageId: evtBackgroundProcessingNoCals
  2030. //
  2031. // MessageText:
  2032. //
  2033. //  Background calendaring agent did not find any more calendars to process.
  2034. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2035. //
  2036. #define evtBackgroundProcessingNoCals    0x4003203CL
  2037. //
  2038. // MessageId: evtBackgroundProcessingFinished
  2039. //
  2040. // MessageText:
  2041. //
  2042. //  Background calendaring agent has finished processing the calendar (%1) in the mailbox (%2) in the MDB (%3).  The return code is %4.
  2043. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2044. //
  2045. #define evtBackgroundProcessingFinished  0x4003203DL
  2046. //
  2047. // MessageId: evtBackgroundAwakeDueToShutdown
  2048. //
  2049. // MessageText:
  2050. //
  2051. //  Background calendaring agent is awakened due to shutdown.
  2052. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2053. //
  2054. #define evtBackgroundAwakeDueToShutdown  0x4003203EL
  2055. //
  2056. // MessageId: evtBackgroundAwake
  2057. //
  2058. // MessageText:
  2059. //
  2060. //  Background calendaring agent is awakened due to calendars needing expansion.
  2061. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2062. //
  2063. #define evtBackgroundAwake               0x4003203FL
  2064. //
  2065. // MessageId: evtBackgroundTerminating
  2066. //
  2067. // MessageText:
  2068. //
  2069. //  Background calendaring agent is terminating with return code %1.
  2070. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2071. //
  2072. #define evtBackgroundTerminating         0x40032040L
  2073. //
  2074. // MessageId: evtBackgroundRegisterTaskFailed
  2075. //
  2076. // MessageText:
  2077. //
  2078. //  The background calendaring agent failed with error code %1 while registering task.  
  2079. //  The rendering of large calendars with the web client or Microsoft Internet Explorer will be slower.
  2080. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2081. //
  2082. #define evtBackgroundRegisterTaskFailed  0xC0032041L
  2083. //
  2084. // MessageId: evtBackgroundLogonFailed
  2085. //
  2086. // MessageText:
  2087. //
  2088. //  The background calendaring agent failed to logon to the MDB, or create a session object on the MDB:%1.  
  2089. //  The error code is %2.
  2090. //  The rendering of large calendars with the web client or Microsoft Internet Explorer for the mailbox %3 with GUID:%4 will be slower.
  2091. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2092. //
  2093. #define evtBackgroundLogonFailed         0xC0032042L
  2094. //
  2095. // MessageId: evtBackgroundGetMachineToken
  2096. //
  2097. // MessageText:
  2098. //
  2099. //  The background calendaring agent failed to retrieve the token required for logon on the MDB:%1.  
  2100. //  The error code is %2.
  2101. //  The rendering of large calendars with the web client or Microsoft Internet Explorer on this MDB will be slower.
  2102. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2103. //
  2104. #define evtBackgroundGetMachineToken     0xC0032043L
  2105. //
  2106. // MessageId: evtBackgroundSleepUntilNewCal
  2107. //
  2108. // MessageText:
  2109. //
  2110. //  Background calendaring agent is sleeping until shutdown or a calendar is queued.
  2111. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2112. //
  2113. #define evtBackgroundSleepUntilNewCal    0x40032044L
  2114. //
  2115. // MessageId: evtBackgroundQueued
  2116. //
  2117. // MessageText:
  2118. //
  2119. //  The calendar (%1) in mailbox (%2) in the MDB (%3) has been queued for background expansion.
  2120. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2121. //
  2122. #define evtBackgroundQueued              0x40032045L
  2123. //
  2124. // MessageId: evtBkExpDumpFcn
  2125. //
  2126. // MessageText:
  2127. //
  2128. //  The background calendaring agent failed in the following function with error code %1.
  2129. //  %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2130. //
  2131. #define evtBkExpDumpFcn                  0xC0032046L
  2132. #endif