home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / cdosyserr.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  16.5 KB  |  897 lines

  1. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28. //
  29. //  Values are 32 bit values layed out as follows:
  30. //
  31. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  32. //   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
  33. //  +---+-+-+-----------------------+-------------------------------+
  34. //  |Sev|C|R|     Facility          |               Code            |
  35. //  +---+-+-+-----------------------+-------------------------------+
  36. //
  37. //  where
  38. //
  39. //      Sev - is the severity code
  40. //
  41. //          00 - Success
  42. //          01 - Informational
  43. //          10 - Warning
  44. //          11 - Error
  45. //
  46. //      C - is the Customer code flag
  47. //
  48. //      R - is a reserved bit
  49. //
  50. //      Facility - is the facility code
  51. //
  52. //      Code - is the facility's status code
  53. //
  54. //
  55. // Define the facility codes
  56. //
  57.  
  58.  
  59. //
  60. // Define the severity codes
  61. //
  62.  
  63.  
  64. //
  65. // MessageId: CDO_E_UNCAUGHT_EXCEPTION
  66. //
  67. // MessageText:
  68. //
  69. //  Exception %1 was generated at address %2
  70. //
  71. #define CDO_E_UNCAUGHT_EXCEPTION         0x80040201L
  72.  
  73.  
  74. //
  75. // MessageId: CDO_E_NOT_OPENED
  76. //
  77. // MessageText:
  78. //
  79. //  No data source has been opened for the object.
  80. //
  81. #define CDO_E_NOT_OPENED                 0x80040202L
  82.  
  83. //
  84. // MessageId: CDO_E_UNSUPPORTED_DATASOURCE
  85. //
  86. // MessageText:
  87. //
  88. //  The object does not support this type of data source.
  89. //
  90. #define CDO_E_UNSUPPORTED_DATASOURCE     0x80040203L
  91.  
  92. //
  93. // MessageId: CDO_E_INVALID_PROPERTYNAME
  94. //
  95. // MessageText:
  96. //
  97. //  The object does not support the requested property name or namespace.
  98. //
  99. #define CDO_E_INVALID_PROPERTYNAME       0x80040204L
  100.  
  101. //
  102. // MessageId: CDO_E_PROP_UNSUPPORTED
  103. //
  104. // MessageText:
  105. //
  106. //  The object does not support the requested property.
  107. //
  108. #define CDO_E_PROP_UNSUPPORTED           0x80040205L
  109.  
  110.  
  111. //
  112. // MessageId: CDO_E_INACTIVE
  113. //
  114. // MessageText:
  115. //
  116. //  The object is not active. It may have been deleted or it may not have been opened.
  117. //
  118. #define CDO_E_INACTIVE                   0x80040206L
  119.  
  120. //
  121. // MessageId: CDO_E_NO_SUPPORT_FOR_OBJECTS
  122. //
  123. // MessageText:
  124. //
  125. //  The object does not support storing persistent state information for objects.
  126. //
  127. #define CDO_E_NO_SUPPORT_FOR_OBJECTS     0x80040207L
  128.  
  129. //
  130. // MessageId: CDO_E_NOT_AVAILABLE
  131. //
  132. // MessageText:
  133. //
  134. //  The requested property or feature, while supported, is not available at this time or in this context.
  135. //
  136. #define CDO_E_NOT_AVAILABLE              0x80040208L
  137.  
  138. //
  139. // MessageId: CDO_E_NO_DEFAULT_DROP_DIR
  140. //
  141. // MessageText:
  142. //
  143. //  No default drop directory has been configured for this server.
  144. //
  145. #define CDO_E_NO_DEFAULT_DROP_DIR        0x80040209L
  146.  
  147. //
  148. // MessageId: CDO_E_SMTP_SERVER_REQUIRED
  149. //
  150. // MessageText:
  151. //
  152. //  The SMTP server name is required, and was not found in the configuration source.
  153. //
  154. #define CDO_E_SMTP_SERVER_REQUIRED       0x8004020AL
  155.  
  156. //
  157. // MessageId: CDO_E_NNTP_SERVER_REQUIRED
  158. //
  159. // MessageText:
  160. //
  161. //  The NNTP server name is required, and was not found in the configuration source.
  162. //
  163. #define CDO_E_NNTP_SERVER_REQUIRED       0x8004020BL
  164.  
  165. //
  166. // MessageId: CDO_E_RECIPIENT_MISSING
  167. //
  168. // MessageText:
  169. //
  170. //  At least one recipient is required, but none were found.
  171. //
  172. #define CDO_E_RECIPIENT_MISSING          0x8004020CL
  173.  
  174. //
  175. // MessageId: CDO_E_FROM_MISSING
  176. //
  177. // MessageText:
  178. //
  179. //  At least one of the From or Sender fields is required, and neither was found.
  180. //
  181. #define CDO_E_FROM_MISSING               0x8004020DL
  182.  
  183. //
  184. // MessageId: CDO_E_SENDER_REJECTED
  185. //
  186. // MessageText:
  187. //
  188. //  The server rejected the sender address. The server response was: %1
  189. //
  190. #define CDO_E_SENDER_REJECTED            0x8004020EL
  191.  
  192. //
  193. // MessageId: CDO_E_RECIPIENTS_REJECTED
  194. //
  195. // MessageText:
  196. //
  197. //  The server rejected one or more recipient addresses. The server response was: %1
  198. //
  199. #define CDO_E_RECIPIENTS_REJECTED        0x8004020FL
  200.  
  201. //
  202. // MessageId: CDO_E_NNTP_POST_FAILED
  203. //
  204. // MessageText:
  205. //
  206. //  The message could not be posted to the NNTP server. The transport error code was %2. The server response was %1
  207. //
  208. #define CDO_E_NNTP_POST_FAILED           0x80040210L
  209.  
  210. //
  211. // MessageId: CDO_E_SMTP_SEND_FAILED
  212. //
  213. // MessageText:
  214. //
  215. //  The message could not be sent to the SMTP server. The transport error code was %2. The server response was %1
  216. //
  217. #define CDO_E_SMTP_SEND_FAILED           0x80040211L
  218.  
  219. //
  220. // MessageId: CDO_E_CONNECTION_DROPPED
  221. //
  222. // MessageText:
  223. //
  224. //  The transport lost its connection to the server.
  225. //
  226. #define CDO_E_CONNECTION_DROPPED         0x80040212L
  227.  
  228. //
  229. // MessageId: CDO_E_FAILED_TO_CONNECT
  230. //
  231. // MessageText:
  232. //
  233. //  The transport failed to connect to the server.
  234. //
  235. #define CDO_E_FAILED_TO_CONNECT          0x80040213L
  236.  
  237. //
  238. // MessageId: CDO_E_INVALID_POST
  239. //
  240. // MessageText:
  241. //
  242. //  The Subject, From, and Newsgroup fields are all required, and one or more was not found.
  243. //
  244. #define CDO_E_INVALID_POST               0x80040214L
  245.  
  246.  
  247. //
  248. // MessageId: CDO_E_AUTHENTICATION_FAILURE
  249. //
  250. // MessageText:
  251. //
  252. //  The server rejected the logon attempt due to authentication failure. The server response was: %1
  253. //
  254. #define CDO_E_AUTHENTICATION_FAILURE     0x80040215L
  255.  
  256. //
  257. // MessageId: CDO_E_INVALID_CONTENT_TYPE
  258. //
  259. // MessageText:
  260. //
  261. //  The content type was not valid in this context. For example, the root of an MHTML message must be an HTML document.
  262. //
  263. #define CDO_E_INVALID_CONTENT_TYPE       0x80040216L
  264.  
  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. //
  275. // MessageId: CDO_E_HTTP_NOT_FOUND
  276. //
  277. // MessageText:
  278. //
  279. //  The requested resource could not be found. The server response was: %1.
  280. //
  281. #define CDO_E_HTTP_NOT_FOUND             0x80040218L
  282.  
  283. //
  284. // MessageId: CDO_E_HTTP_FORBIDDEN
  285. //
  286. // MessageText:
  287. //
  288. //  Access to the requested resource is denied. The server response was: %1.
  289. //
  290. #define CDO_E_HTTP_FORBIDDEN             0x80040219L
  291.  
  292. //
  293. // MessageId: CDO_E_HTTP_FAILED
  294. //
  295. // MessageText:
  296. //
  297. //  The HTTP request failed.  The server response was: %1.
  298. //
  299. #define CDO_E_HTTP_FAILED                0x8004021AL
  300.  
  301. //
  302. // MessageId: CDO_E_MULTIPART_NO_DATA
  303. //
  304. // MessageText:
  305. //
  306. //  This is a multipart body part. It has no content other than the body parts contained within it.
  307. //
  308. #define CDO_E_MULTIPART_NO_DATA          0x8004021BL
  309.  
  310.  
  311. //
  312. // MessageId: CDO_E_INVALID_ENCODING_FOR_MULTIPART
  313. //
  314. // MessageText:
  315. //
  316. //  Multipart body parts must be encoded as 7bit, 8bit, or binary.
  317. //
  318. #define CDO_E_INVALID_ENCODING_FOR_MULTIPART 0x8004021CL
  319.  
  320.  
  321. //
  322. // MessageId: CDO_E_PROP_NOT_FOUND
  323. //
  324. // MessageText:
  325. //
  326. //  The requested property was not found.
  327. //
  328. #define CDO_E_PROP_NOT_FOUND             0x8004021EL
  329.  
  330.  
  331. //
  332. // MessageId: CDO_E_INVALID_SEND_OPTION
  333. //
  334. // MessageText:
  335. //
  336. //  The "SendUsing" configuration value is invalid.
  337. //
  338. #define CDO_E_INVALID_SEND_OPTION        0x80040220L
  339.  
  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. //
  350. // MessageId: CDO_E_NO_PICKUP_DIR
  351. //
  352. // MessageText:
  353. //
  354. //  The pickup directory path is required and was not specified. 
  355. //
  356. #define CDO_E_NO_PICKUP_DIR              0x80040222L
  357.  
  358. //
  359. // MessageId: CDO_E_NOT_ALL_DELETED
  360. //
  361. // MessageText:
  362. //
  363. //  One or more messages could not be deleted.
  364. //
  365. #define CDO_E_NOT_ALL_DELETED            0x80040223L
  366.  
  367.  
  368.  
  369.  
  370. //
  371. // MessageId: CDO_E_PROP_READONLY
  372. //
  373. // MessageText:
  374. //
  375. //  The property is read-only.
  376. //
  377. #define CDO_E_PROP_READONLY              0x80040227L
  378.  
  379. //
  380. // MessageId: CDO_E_PROP_CANNOT_DELETE
  381. //
  382. // MessageText:
  383. //
  384. //  The property cannot be deleted.
  385. //
  386. #define CDO_E_PROP_CANNOT_DELETE         0x80040228L
  387.  
  388. //
  389. // MessageId: CDO_E_BAD_DATA
  390. //
  391. // MessageText:
  392. //
  393. //  Data  written to the object are inconsistent or invalid. 
  394. //
  395. #define CDO_E_BAD_DATA                   0x80040229L
  396.  
  397. //
  398. // MessageId: CDO_E_PROP_NONHEADER
  399. //
  400. // MessageText:
  401. //
  402. //  The requested property is not in the mail header namespace.
  403. //
  404. #define CDO_E_PROP_NONHEADER             0x8004022AL
  405.  
  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. //
  416. // MessageId: CDO_E_ADOSTREAM_NOT_BOUND
  417. //
  418. // MessageText:
  419. //
  420. //  The ADO stream has not been opened.
  421. //
  422. #define CDO_E_ADOSTREAM_NOT_BOUND        0x8004022CL
  423.  
  424. //
  425. // MessageId: CDO_E_CONTENTPROPXML_NOT_FOUND
  426. //
  427. // MessageText:
  428. //
  429. //  The content properties are missing.
  430. //
  431. #define CDO_E_CONTENTPROPXML_NOT_FOUND   0x8004022DL
  432.  
  433. //
  434. // MessageId: CDO_E_CONTENTPROPXML_WRONG_CHARSET
  435. //
  436. // MessageText:
  437. //
  438. //  Content properties XML must be encoded using UTF-8.
  439. //
  440. #define CDO_E_CONTENTPROPXML_WRONG_CHARSET 0x8004022EL
  441.  
  442. //
  443. // MessageId: CDO_E_CONTENTPROPXML_PARSE_FAILED
  444. //
  445. // MessageText:
  446. //
  447. //  Failed to parse content properties XML.
  448. //
  449. #define CDO_E_CONTENTPROPXML_PARSE_FAILED 0x8004022FL
  450.  
  451. //
  452. // MessageId: CDO_E_CONTENTPROPXML_CONVERT_FAILED
  453. //
  454. // MessageText:
  455. //
  456. //  Failed to convert a property from XML to a requested type.
  457. //
  458. #define CDO_E_CONTENTPROPXML_CONVERT_FAILED 0x80040230L
  459.  
  460. //
  461. // MessageId: CDO_E_NO_DIRECTORIES_SPECIFIED
  462. //
  463. // MessageText:
  464. //
  465. //  No directories were specified for resolution.
  466. //
  467. #define CDO_E_NO_DIRECTORIES_SPECIFIED   0x80040231L
  468.  
  469. //
  470. // MessageId: CDO_E_DIRECTORIES_UNREACHABLE
  471. //
  472. // MessageText:
  473. //
  474. //  Failed to resolve against one or more of the specified directories.
  475. //
  476. #define CDO_E_DIRECTORIES_UNREACHABLE    0x80040232L
  477.  
  478. //
  479. // MessageId: CDO_E_BAD_SENDER
  480. //
  481. // MessageText:
  482. //
  483. //  Could not find the Sender's mailbox.
  484. //
  485. #define CDO_E_BAD_SENDER                 0x80040233L
  486.  
  487. //
  488. // MessageId: CDO_E_SELF_BINDING
  489. //
  490. // MessageText:
  491. //
  492. //  Binding to self is not allowed.
  493. //
  494. #define CDO_E_SELF_BINDING               0x80040234L
  495.  
  496.  
  497.  
  498.  
  499. //
  500. // MessageId: CDO_E_ARGUMENT1
  501. //
  502. // MessageText:
  503. //
  504. //  The first argument is invalid
  505. //
  506. #define CDO_E_ARGUMENT1                  0x80044000L
  507.  
  508. //
  509. // MessageId: CDO_E_ARGUMENT2
  510. //
  511. // MessageText:
  512. //
  513. //  The second argument is invalid
  514. //
  515. #define CDO_E_ARGUMENT2                  0x80044001L
  516.  
  517. //
  518. // MessageId: CDO_E_ARGUMENT3
  519. //
  520. // MessageText:
  521. //
  522. //  The third argument is invalid
  523. //
  524. #define CDO_E_ARGUMENT3                  0x80044002L
  525.  
  526. //
  527. // MessageId: CDO_E_ARGUMENT4
  528. //
  529. // MessageText:
  530. //
  531. //  The fourth argument is invalid
  532. //
  533. #define CDO_E_ARGUMENT4                  0x80044003L
  534.  
  535. //
  536. // MessageId: CDO_E_ARGUMENT5
  537. //
  538. // MessageText:
  539. //
  540. //  The fifth argument is invalid
  541. //
  542. #define CDO_E_ARGUMENT5                  0x80044004L
  543.  
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553. //
  554. // MessageId: CDO_E_NOT_FOUND
  555. //
  556. // MessageText:
  557. //
  558. //  The requested body part was not found in this message.
  559. //
  560. #define CDO_E_NOT_FOUND                  0x800CCE05L
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567. //
  568. // MessageId: CDO_E_INVALID_ENCODING_TYPE
  569. //
  570. // MessageText:
  571. //
  572. //  The content encoding type is invalid.
  573. //
  574. #define CDO_E_INVALID_ENCODING_TYPE      0x800CCE1DL
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581. //
  582. // MessageId: IDS_ORIGINAL_MESSAGE
  583. //
  584. // MessageText:
  585. //
  586. //  -----Original Message-----%0
  587. //
  588. #define IDS_ORIGINAL_MESSAGE             0x00011000L
  589.  
  590. //
  591. // MessageId: IDS_FROM
  592. //
  593. // MessageText:
  594. //
  595. //  From:%0
  596. //
  597. #define IDS_FROM                         0x00011001L
  598.  
  599. //
  600. // MessageId: IDS_SENT
  601. //
  602. // MessageText:
  603. //
  604. //  Sent:%0
  605. //
  606. #define IDS_SENT                         0x00011002L
  607.  
  608. //
  609. // MessageId: IDS_POSTED_AT
  610. //
  611. // MessageText:
  612. //
  613. //  Posted At:%0
  614. //
  615. #define IDS_POSTED_AT                    0x00011003L
  616.  
  617. //
  618. // MessageId: IDS_TO
  619. //
  620. // MessageText:
  621. //
  622. //  To:%0
  623. //
  624. #define IDS_TO                           0x00011004L
  625.  
  626. //
  627. // MessageId: IDS_CC
  628. //
  629. // MessageText:
  630. //
  631. //  Cc:%0
  632. //
  633. #define IDS_CC                           0x00011005L
  634.  
  635. //
  636. // MessageId: IDS_POSTED_TO
  637. //
  638. // MessageText:
  639. //
  640. //  Posted To:%0
  641. //
  642. #define IDS_POSTED_TO                    0x00011006L
  643.  
  644. //
  645. // MessageId: IDS_CONVERSATION
  646. //
  647. // MessageText:
  648. //
  649. //  Conversation:%0
  650. //
  651. #define IDS_CONVERSATION                 0x00011007L
  652.  
  653. //
  654. // MessageId: IDS_SUBJECT
  655. //
  656. // MessageText:
  657. //
  658. //  Subject:%0
  659. //
  660. #define IDS_SUBJECT                      0x00011008L
  661.  
  662. //
  663. // MessageId: IDS_IMPORTANCE
  664. //
  665. // MessageText:
  666. //
  667. //  Importance:%0
  668. //
  669. #define IDS_IMPORTANCE                   0x00011009L
  670.  
  671. //
  672. // MessageId: IDS_ON_BEHALF_OF
  673. //
  674. // MessageText:
  675. //
  676. //  on behalf of%0
  677. //
  678. #define IDS_ON_BEHALF_OF                 0x0001100AL
  679.  
  680. //
  681. // MessageId: IDS_FW
  682. //
  683. // MessageText:
  684. //
  685. //  FW:%0
  686. //
  687. #define IDS_FW                           0x0001100BL
  688.  
  689. //
  690. // MessageId: IDS_RE
  691. //
  692. // MessageText:
  693. //
  694. //  RE:%0
  695. //
  696. #define IDS_RE                           0x0001100CL
  697.  
  698. //
  699. // MessageId: IDS_CODEPAGE
  700. //
  701. // MessageText:
  702. //
  703. //  1252%0
  704. //
  705. #define IDS_CODEPAGE                     0x0001100DL
  706.  
  707. #ifdef CDOSVR
  708. //
  709. // MessageId: IDS_CalendarFolder
  710. //
  711. // MessageText:
  712. //
  713. //  Calendar%0
  714. //
  715. #define IDS_CalendarFolder               0x0001100EL
  716.  
  717. //
  718. // MessageId: IDS_ContactsFolder
  719. //
  720. // MessageText:
  721. //
  722. //  Contacts%0
  723. //
  724. #define IDS_ContactsFolder               0x0001100FL
  725.  
  726. //
  727. // MessageId: IDS_DraftsFolder
  728. //
  729. // MessageText:
  730. //
  731. //  Drafts%0
  732. //
  733. #define IDS_DraftsFolder                 0x00011010L
  734.  
  735. //
  736. // MessageId: IDS_JournalFolder
  737. //
  738. // MessageText:
  739. //
  740. //  Journal%0
  741. //
  742. #define IDS_JournalFolder                0x00011011L
  743.  
  744. //
  745. // MessageId: IDS_NotesFolder
  746. //
  747. // MessageText:
  748. //
  749. //  Notes%0
  750. //
  751. #define IDS_NotesFolder                  0x00011012L
  752.  
  753. //
  754. // MessageId: IDS_TasksFolder
  755. //
  756. // MessageText:
  757. //
  758. //  Tasks%0
  759. //
  760. #define IDS_TasksFolder                  0x00011013L
  761.  
  762. #endif
  763.  
  764.  
  765.  
  766.  
  767.  
  768. #ifdef CDOSVR
  769. //
  770. // MessageId: evtMethodCalled
  771. //
  772. // MessageText:
  773. //
  774. //  %1 Event on %2 called with Flags %3
  775. //
  776. #define evtMethodCalled                  0x00032000L
  777.  
  778. //
  779. // MessageId: evtMethodReturning
  780. //
  781. // MessageText:
  782. //
  783. //  %1 Event Method is returning with HRESULT %2
  784. //
  785. #define evtMethodReturning               0x00032001L
  786.  
  787. //
  788. // MessageId: evtIsAborting
  789. //
  790. // MessageText:
  791. //
  792. //  %1 Event Method is aborting, HRESULT %2
  793. //
  794. #define evtIsAborting                    0xC0032002L
  795.  
  796. //
  797. // MessageId: evtExpansionInitialized
  798. //
  799. // MessageText:
  800. //
  801. //  Calendaring agent is initialized successfully.
  802. //
  803. #define evtExpansionInitialized          0x00032003L
  804.  
  805. //
  806. // MessageId: evtExpansionUnInitialized
  807. //
  808. // MessageText:
  809. //
  810. //  Calendaring agent is stopping successfully.
  811. //
  812. #define evtExpansionUnInitialized        0x00032004L
  813.  
  814. //
  815. // MessageId: evtExpansionInitializeFailed
  816. //
  817. // MessageText:
  818. //
  819. //  Calendaring agent failed to initialize with error %1.
  820. //
  821. #define evtExpansionInitializeFailed     0xC0032005L
  822.  
  823. //
  824. // MessageId: evtExpansionRegisterFailed
  825. //
  826. // MessageText:
  827. //
  828. //  Calendaring recurring item expansion failed to register for notifications for MDB %1.
  829. //
  830. #define evtExpansionRegisterFailed       0xC0032006L
  831.  
  832. //
  833. // MessageId: evtExpansionMessageSaveChangesFailed
  834. //
  835. // MessageText:
  836. //
  837. //  Calendaring agent failed in message save notification with error %1 on URL %2.
  838. //
  839. #define evtExpansionMessageSaveChangesFailed 0xC0032007L
  840.  
  841. //
  842. // MessageId: evtExpansionMessageDeleteFailed
  843. //
  844. // MessageText:
  845. //
  846. //  Calendaring agent failed in message delete notification with error %1 on URL %2.
  847. //
  848. #define evtExpansionMessageDeleteFailed  0xC0032008L
  849.  
  850. //
  851. // MessageId: evtExpansionFolderSaveChangesFailed
  852. //
  853. // MessageText:
  854. //
  855. //  Calendaring agent failed in folder save notification with error %1 on URL %2.
  856. //
  857. #define evtExpansionFolderSaveChangesFailed 0xC0032009L
  858.  
  859. //
  860. // MessageId: evtExpansionTooManyInstancesPerDay
  861. //
  862. // MessageText:
  863. //
  864. //  Calendaring agent truncated expansion after %1 instances per day.
  865. //
  866. #define evtExpansionTooManyInstancesPerDay 0x8003200AL
  867.  
  868. //
  869. // MessageId: evtMailboxCreateTotalFailure
  870. //
  871. // MessageText:
  872. //
  873. //  The mailbox creation callback failed to create any folders.
  874. //
  875. #define evtMailboxCreateTotalFailure     0xC003200BL
  876.  
  877. //
  878. // MessageId: evtMailboxCreatePartialFailure
  879. //
  880. // MessageText:
  881. //
  882. //  The mailbox creation callback failed to create one or more folders.
  883. //
  884. #define evtMailboxCreatePartialFailure   0xC003200CL
  885.  
  886. //
  887. // MessageId: evtUninitImplRestFailed
  888. //
  889. // MessageText:
  890. //
  891. //  Calendaring agent failed to uninitialize implied restriction with error %1 on URL %2.
  892. //
  893. #define evtUninitImplRestFailed          0xC003200DL
  894.  
  895. #endif
  896. #pragma option pop /*P_O_Pop*/
  897.