123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064 |
- //
- // CDO message file
- //
- //
- // Message categories
- //
- //
- // Values are 32 bit values layed out as follows:
- //
- // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
- // 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
- // +---+-+-+-----------------------+-------------------------------+
- // |Sev|C|R| Facility | Code |
- // +---+-+-+-----------------------+-------------------------------+
- //
- // where
- //
- // Sev - is the severity code
- //
- // 00 - Success
- // 01 - Informational
- // 10 - Warning
- // 11 - Error
- //
- // C - is the Customer code flag
- //
- // R - is a reserved bit
- //
- // Facility - is the facility code
- //
- // Code - is the facility's status code
- //
- //
- // Define the facility codes
- //
- //
- // Define the severity codes
- //
- //
- // MessageId: categoryHeader
- //
- // MessageText:
- //
- // Header
- //
- #define categoryHeader 0x00000001L
- //
- // MessageId: categoryUnused
- //
- // MessageText:
- //
- // None
- //
- #define categoryUnused 0x00000002L
- //
- // MessageId: categoryGeneral
- //
- // MessageText:
- //
- // General
- //
- #define categoryGeneral 0x00000003L
- //////////////////////////////////////////////////////////////////////////////
- // Error code ranges in FACILITY_ITF.
- // Different libraries sharing the CDO name
- // should not conflict in their error codes. Note that below 0x200 is
- // reserved by COM.
- // 0x200 through 0x5ff - CDOEX and CDOSYS error codes
- // 0x600 through 0x6ff - workflow error codes
- // 0x1000 through 0x1100
- // 0x4000 through 0x4100
- //
- //////////////////////////////////////////////////////////////////////////////
- // MessageId Ranges used by the localizer
- //
- // 1: 0x200 through 0x7ff, 0x4000 through 0x4fff: Library error messages, not localized.
- // 2: 0x2000 through 0x2fff: Server error messages, localized in server languages.
- // 3: 0x1000 through 0x1fff: Client text, localized in client languages.
- //
- //////////////////////////////////////////////////////////////////////////////
- // Error strings for IErrorInfo
- //
- // MessageId = 0x200 through 0x7ff or 0x4000 through 0x4fff. Not localized.
- //
- // 0x200 available - was CDO_E_FAIL
- //
- // MessageId: CDO_E_UNCAUGHT_EXCEPTION
- //
- // MessageText:
- //
- // Exception %1 was generated at address %2
- //
- #define CDO_E_UNCAUGHT_EXCEPTION 0x80040201L
- // 0x202 was CDO_E_NOT_BOUND, was renamed
- //
- // MessageId: CDO_E_NOT_OPENED
- //
- // MessageText:
- //
- // No data source has been opened for the object.
- //
- #define CDO_E_NOT_OPENED 0x80040202L
- //
- // MessageId: CDO_E_UNSUPPORTED_DATASOURCE
- //
- // MessageText:
- //
- // The object does not support this type of data source.
- //
- #define CDO_E_UNSUPPORTED_DATASOURCE 0x80040203L
- //
- // MessageId: CDO_E_INVALID_PROPERTYNAME
- //
- // MessageText:
- //
- // The object does not support the requested property name or namespace.
- //
- #define CDO_E_INVALID_PROPERTYNAME 0x80040204L
- //
- // MessageId: CDO_E_PROP_UNSUPPORTED
- //
- // MessageText:
- //
- // The object does not support the requested property.
- //
- #define CDO_E_PROP_UNSUPPORTED 0x80040205L
- // 0x206 - was CDO_E_NOT_INITIALIZED
- //
- // MessageId: CDO_E_INACTIVE
- //
- // MessageText:
- //
- // The object is not active. It may have been deleted or it may not have been opened.
- //
- #define CDO_E_INACTIVE 0x80040206L
- //
- // MessageId: CDO_E_NO_SUPPORT_FOR_OBJECTS
- //
- // MessageText:
- //
- // The object does not support storing persistent state information for objects.
- //
- #define CDO_E_NO_SUPPORT_FOR_OBJECTS 0x80040207L
- //
- // MessageId: CDO_E_NOT_AVAILABLE
- //
- // MessageText:
- //
- // The requested property or feature, while supported, is not available at this time or in this context.
- //
- #define CDO_E_NOT_AVAILABLE 0x80040208L
- //
- // MessageId: CDO_E_NO_DEFAULT_DROP_DIR
- //
- // MessageText:
- //
- // No default drop directory has been configured for this server.
- //
- #define CDO_E_NO_DEFAULT_DROP_DIR 0x80040209L
- //
- // MessageId: CDO_E_SMTP_SERVER_REQUIRED
- //
- // MessageText:
- //
- // The SMTP server name is required, and was not found in the configuration source.
- //
- #define CDO_E_SMTP_SERVER_REQUIRED 0x8004020AL
- //
- // MessageId: CDO_E_NNTP_SERVER_REQUIRED
- //
- // MessageText:
- //
- // The NNTP server name is required, and was not found in the configuration source.
- //
- #define CDO_E_NNTP_SERVER_REQUIRED 0x8004020BL
- //
- // MessageId: CDO_E_RECIPIENT_MISSING
- //
- // MessageText:
- //
- // At least one recipient is required, but none were found.
- //
- #define CDO_E_RECIPIENT_MISSING 0x8004020CL
- //
- // MessageId: CDO_E_FROM_MISSING
- //
- // MessageText:
- //
- // At least one of the From or Sender fields is required, and neither was found.
- //
- #define CDO_E_FROM_MISSING 0x8004020DL
- //
- // MessageId: CDO_E_SENDER_REJECTED
- //
- // MessageText:
- //
- // The server rejected the sender address. The server response was: %1
- //
- #define CDO_E_SENDER_REJECTED 0x8004020EL
- //
- // MessageId: CDO_E_RECIPIENTS_REJECTED
- //
- // MessageText:
- //
- // The server rejected one or more recipient addresses. The server response was: %1
- //
- #define CDO_E_RECIPIENTS_REJECTED 0x8004020FL
- //
- // MessageId: CDO_E_NNTP_POST_FAILED
- //
- // MessageText:
- //
- // The message could not be posted to the NNTP server. The transport error code was %2. The server response was %1
- //
- #define CDO_E_NNTP_POST_FAILED 0x80040210L
- //
- // MessageId: CDO_E_SMTP_SEND_FAILED
- //
- // MessageText:
- //
- // The message could not be sent to the SMTP server. The transport error code was %2. The server response was %1
- //
- #define CDO_E_SMTP_SEND_FAILED 0x80040211L
- //
- // MessageId: CDO_E_CONNECTION_DROPPED
- //
- // MessageText:
- //
- // The transport lost its connection to the server.
- //
- #define CDO_E_CONNECTION_DROPPED 0x80040212L
- //
- // MessageId: CDO_E_FAILED_TO_CONNECT
- //
- // MessageText:
- //
- // The transport failed to connect to the server.
- //
- #define CDO_E_FAILED_TO_CONNECT 0x80040213L
- //
- // MessageId: CDO_E_INVALID_POST
- //
- // MessageText:
- //
- // The Subject, From, and Newsgroup fields are all required, and one or more was not found.
- //
- #define CDO_E_INVALID_POST 0x80040214L
- //0x215 was CDO_E_DELETE_FAILED
- //
- // MessageId: CDO_E_AUTHENTICATION_FAILURE
- //
- // MessageText:
- //
- // The server rejected the logon attempt due to authentication failure. The server response was: %1
- //
- #define CDO_E_AUTHENTICATION_FAILURE 0x80040215L
- //
- // MessageId: CDO_E_INVALID_CONTENT_TYPE
- //
- // MessageText:
- //
- // The content type was not valid in this context. For example, the root of an MHTML message must be an HTML document.
- //
- #define CDO_E_INVALID_CONTENT_TYPE 0x80040216L
- //
- // MessageId: CDO_E_LOGON_FAILURE
- //
- // MessageText:
- //
- // The transport was unable to log on to the server.
- //
- #define CDO_E_LOGON_FAILURE 0x80040217L
- //
- // MessageId: CDO_E_HTTP_NOT_FOUND
- //
- // MessageText:
- //
- // The requested resource could not be found. The server response was: %1.
- //
- #define CDO_E_HTTP_NOT_FOUND 0x80040218L
- //
- // MessageId: CDO_E_HTTP_FORBIDDEN
- //
- // MessageText:
- //
- // Access to the requested resource is denied. The server response was: %1.
- //
- #define CDO_E_HTTP_FORBIDDEN 0x80040219L
- //
- // MessageId: CDO_E_HTTP_FAILED
- //
- // MessageText:
- //
- // The HTTP request failed. The server response was: %1.
- //
- #define CDO_E_HTTP_FAILED 0x8004021AL
- //
- // MessageId: CDO_E_MULTIPART_NO_DATA
- //
- // MessageText:
- //
- // This is a multipart body part. It has no content other than the body parts contained within it.
- //
- #define CDO_E_MULTIPART_NO_DATA 0x8004021BL
- // renamed, was CDO_E_INVALID_ENCODING_FOR_COMPOSITE
- //
- // MessageId: CDO_E_INVALID_ENCODING_FOR_MULTIPART
- //
- // MessageText:
- //
- // Multipart body parts must be encoded as 7bit, 8bit, or binary.
- //
- #define CDO_E_INVALID_ENCODING_FOR_MULTIPART 0x8004021CL
- // 0x21d was CDO_E_PATHTOOLONG
- //
- // MessageId: CDO_E_UNSAFE_OPERATION
- //
- // MessageText:
- //
- // The requested operation is not allowed in secure mode.
- //
- #define CDO_E_UNSAFE_OPERATION 0x8004021DL
- //
- // MessageId: CDO_E_PROP_NOT_FOUND
- //
- // MessageText:
- //
- // The requested property was not found.
- //
- #define CDO_E_PROP_NOT_FOUND 0x8004021EL
- // 0x21f available, was CDO_E_UNSUPPORTED_PROTOCOL
- //
- // MessageId: CDO_E_INVALID_SEND_OPTION
- //
- // MessageText:
- //
- // The "SendUsing" configuration value is invalid.
- //
- #define CDO_E_INVALID_SEND_OPTION 0x80040220L
- //
- // MessageId: CDO_E_INVALID_POST_OPTION
- //
- // MessageText:
- //
- // The "PostUsing" configuration value is invalid.
- //
- #define CDO_E_INVALID_POST_OPTION 0x80040221L
- //
- // MessageId: CDO_E_NO_PICKUP_DIR
- //
- // MessageText:
- //
- // The pickup directory path is required and was not specified.
- //
- #define CDO_E_NO_PICKUP_DIR 0x80040222L
- //
- // MessageId: CDO_E_NOT_ALL_DELETED
- //
- // MessageText:
- //
- // One or more messages could not be deleted.
- //
- #define CDO_E_NOT_ALL_DELETED 0x80040223L
- //
- // MessageId: CDO_E_NO_METHOD
- //
- // MessageText:
- //
- // The requested operation is not available on the underlying object.
- //
- #define CDO_E_NO_METHOD 0x80040224L
- //0x225 available, was CDO_E_BYTEARRAY_REQUIRED
- // 0x226 available, was CDO_E_BSTR_REQUIRED
- //
- // MessageId: CDO_E_PROP_READONLY
- //
- // MessageText:
- //
- // The property is read-only.
- //
- #define CDO_E_PROP_READONLY 0x80040227L
- //
- // MessageId: CDO_E_PROP_CANNOT_DELETE
- //
- // MessageText:
- //
- // The property cannot be deleted.
- //
- #define CDO_E_PROP_CANNOT_DELETE 0x80040228L
- //
- // MessageId: CDO_E_BAD_DATA
- //
- // MessageText:
- //
- // Data written to the object are inconsistent or invalid.
- //
- #define CDO_E_BAD_DATA 0x80040229L
- //
- // MessageId: CDO_E_PROP_NONHEADER
- //
- // MessageText:
- //
- // The requested property is not in the mail header namespace.
- //
- #define CDO_E_PROP_NONHEADER 0x8004022AL
- //
- // MessageId: CDO_E_INVALID_CHARSET
- //
- // MessageText:
- //
- // The requested character set is not installed on the computer.
- //
- #define CDO_E_INVALID_CHARSET 0x8004022BL
- //
- // MessageId: CDO_E_ADOSTREAM_NOT_BOUND
- //
- // MessageText:
- //
- // The ADO stream has not been opened.
- //
- #define CDO_E_ADOSTREAM_NOT_BOUND 0x8004022CL
- //
- // MessageId: CDO_E_CONTENTPROPXML_NOT_FOUND
- //
- // MessageText:
- //
- // The content properties are missing.
- //
- #define CDO_E_CONTENTPROPXML_NOT_FOUND 0x8004022DL
- //
- // MessageId: CDO_E_CONTENTPROPXML_WRONG_CHARSET
- //
- // MessageText:
- //
- // Content properties XML must be encoded using UTF-8.
- //
- #define CDO_E_CONTENTPROPXML_WRONG_CHARSET 0x8004022EL
- //
- // MessageId: CDO_E_CONTENTPROPXML_PARSE_FAILED
- //
- // MessageText:
- //
- // Failed to parse content properties XML.
- //
- #define CDO_E_CONTENTPROPXML_PARSE_FAILED 0x8004022FL
- //
- // MessageId: CDO_E_CONTENTPROPXML_CONVERT_FAILED
- //
- // MessageText:
- //
- // Failed to convert a property from XML to a requested type.
- //
- #define CDO_E_CONTENTPROPXML_CONVERT_FAILED 0x80040230L
- //
- // MessageId: CDO_E_NO_DIRECTORIES_SPECIFIED
- //
- // MessageText:
- //
- // No directories were specified for resolution.
- //
- #define CDO_E_NO_DIRECTORIES_SPECIFIED 0x80040231L
- //
- // MessageId: CDO_E_DIRECTORIES_UNREACHABLE
- //
- // MessageText:
- //
- // Failed to resolve against one or more of the specified directories.
- //
- #define CDO_E_DIRECTORIES_UNREACHABLE 0x80040232L
- //
- // MessageId: CDO_E_BAD_SENDER
- //
- // MessageText:
- //
- // Could not find the Sender's mailbox.
- //
- #define CDO_E_BAD_SENDER 0x80040233L
- //
- // MessageId: CDO_E_SELF_BINDING
- //
- // MessageText:
- //
- // Binding to self is not allowed.
- //
- #define CDO_E_SELF_BINDING 0x80040234L
- //
- // MessageId: CDO_E_BAD_ATTENDEE_DATA
- //
- // MessageText:
- //
- // Data of the Attendees in the object are inconsistent or invalid.
- //
- #define CDO_E_BAD_ATTENDEE_DATA 0x80040235L
- //////////////////////////////////////////////////////////////////////////////
- // parameter validation error messages
- //
- // MessageId: CDO_E_ARGUMENT1
- //
- // MessageText:
- //
- // The first argument is invalid
- //
- #define CDO_E_ARGUMENT1 0x80044000L
- //
- // MessageId: CDO_E_ARGUMENT2
- //
- // MessageText:
- //
- // The second argument is invalid
- //
- #define CDO_E_ARGUMENT2 0x80044001L
- //
- // MessageId: CDO_E_ARGUMENT3
- //
- // MessageText:
- //
- // The third argument is invalid
- //
- #define CDO_E_ARGUMENT3 0x80044002L
- //
- // MessageId: CDO_E_ARGUMENT4
- //
- // MessageText:
- //
- // The fourth argument is invalid
- //
- #define CDO_E_ARGUMENT4 0x80044003L
- //
- // MessageId: CDO_E_ARGUMENT5
- //
- // MessageText:
- //
- // The fifth argument is invalid
- //
- #define CDO_E_ARGUMENT5 0x80044004L
- //////////////////////////////////////////////////////////////////////////////
- // Errors returned by MimeOle
- //
- // These are defined here to provide extended error info text descriptions.
- // CDO should never explicitly return any of these errors; they may be passed
- // through from MimeOle
- // I expect there are numerous places where these errors could still slip through:
- // MIME_E_NOT_FOUND
- //
- // MessageId: CDO_E_NOT_FOUND
- //
- // MessageText:
- //
- // The requested body part was not found in this message.
- //
- #define CDO_E_NOT_FOUND 0x800CCE05L
- // MIME_E_INVALID_ENCODINGTYPE
- // Returned when MimeOLE tries to BinHex encode. Can also be returned if an invalid encoding
- // is specified, but CDO should protect from these cases.
- //
- // Also CDO returns this error when a client sets an invalid encoding
- //
- // MessageId: CDO_E_INVALID_ENCODING_TYPE
- //
- // MessageText:
- //
- // The content encoding type is invalid.
- //
- #define CDO_E_INVALID_ENCODING_TYPE 0x800CCE1DL
- ///////////////////////////////////////
- // Headers and folder names
- //
- // MessageId = 0x1000 through 0x1fff, localized in client languages.
- ///////////////////////////////////////
- //
- // MessageId: IDS_ORIGINAL_MESSAGE
- //
- // MessageText:
- //
- // -----Original Message-----%0
- //
- #define IDS_ORIGINAL_MESSAGE 0x00011000L
- //
- // MessageId: IDS_FROM
- //
- // MessageText:
- //
- // From:%0
- //
- #define IDS_FROM 0x00011001L
- //
- // MessageId: IDS_SENT
- //
- // MessageText:
- //
- // Sent:%0
- //
- #define IDS_SENT 0x00011002L
- //
- // MessageId: IDS_POSTED_AT
- //
- // MessageText:
- //
- // Posted At:%0
- //
- #define IDS_POSTED_AT 0x00011003L
- //
- // MessageId: IDS_TO
- //
- // MessageText:
- //
- // To:%0
- //
- #define IDS_TO 0x00011004L
- //
- // MessageId: IDS_CC
- //
- // MessageText:
- //
- // Cc:%0
- //
- #define IDS_CC 0x00011005L
- //
- // MessageId: IDS_POSTED_TO
- //
- // MessageText:
- //
- // Posted To:%0
- //
- #define IDS_POSTED_TO 0x00011006L
- //
- // MessageId: IDS_CONVERSATION
- //
- // MessageText:
- //
- // Conversation:%0
- //
- #define IDS_CONVERSATION 0x00011007L
- //
- // MessageId: IDS_SUBJECT
- //
- // MessageText:
- //
- // Subject:%0
- //
- #define IDS_SUBJECT 0x00011008L
- //
- // MessageId: IDS_IMPORTANCE
- //
- // MessageText:
- //
- // Importance:%0
- //
- #define IDS_IMPORTANCE 0x00011009L
- //
- // MessageId: IDS_ON_BEHALF_OF
- //
- // MessageText:
- //
- // on behalf of%0
- //
- #define IDS_ON_BEHALF_OF 0x0001100AL
- //
- // MessageId: IDS_FW
- //
- // MessageText:
- //
- // FW:%0
- //
- #define IDS_FW 0x0001100BL
- //
- // MessageId: IDS_RE
- //
- // MessageText:
- //
- // RE:%0
- //
- #define IDS_RE 0x0001100CL
- //
- // MessageId: IDS_CODEPAGE
- //
- // MessageText:
- //
- // 1252%0
- //
- #define IDS_CODEPAGE 0x0001100DL
- #ifdef CDOSVR
- //
- // MessageId: IDS_CalendarFolder
- //
- // MessageText:
- //
- // Calendar%0
- //
- #define IDS_CalendarFolder 0x0001100EL
- //
- // MessageId: IDS_ContactsFolder
- //
- // MessageText:
- //
- // Contacts%0
- //
- #define IDS_ContactsFolder 0x0001100FL
- //
- // MessageId: IDS_DraftsFolder
- //
- // MessageText:
- //
- // Drafts%0
- //
- #define IDS_DraftsFolder 0x00011010L
- //
- // MessageId: IDS_JournalFolder
- //
- // MessageText:
- //
- // Journal%0
- //
- #define IDS_JournalFolder 0x00011011L
- //
- // MessageId: IDS_NotesFolder
- //
- // MessageText:
- //
- // Notes%0
- //
- #define IDS_NotesFolder 0x00011012L
- //
- // MessageId: IDS_TasksFolder
- //
- // MessageText:
- //
- // Tasks%0
- //
- #define IDS_TasksFolder 0x00011013L
- #endif
- //
- // MessageId: IDS_NewFolder
- //
- // MessageText:
- //
- // New Folder%0
- //
- #define IDS_NewFolder 0x00011014L
- //
- // MessageId: IDS_Location
- //
- // MessageText:
- //
- // Location:%0
- //
- #define IDS_Location 0x00011015L
- //
- // MessageId: IDS_StartTime
- //
- // MessageText:
- //
- // Start Time:%0
- //
- #define IDS_StartTime 0x00011016L
- //
- // MessageId: IDS_EndTime
- //
- // MessageText:
- //
- // End Time:%0
- //
- #define IDS_EndTime 0x00011017L
- //
- // MessageId: IDS_TimeZone
- //
- // MessageText:
- //
- // Time Zone:%0
- //
- #define IDS_TimeZone 0x00011018L
- //
- // MessageId: IDS_LocalTime
- //
- // MessageText:
- //
- // Local time%0
- //
- #define IDS_LocalTime 0x00011019L
- //
- // MessageId: IDS_Organizer
- //
- // MessageText:
- //
- // Organizer:%0
- //
- #define IDS_Organizer 0x0001101AL
- //
- // MessageId: IDS_ApptType
- //
- // MessageText:
- //
- // Type:%0
- //
- #define IDS_ApptType 0x0001101BL
- //
- // MessageId: IDS_SingleAppt
- //
- // MessageText:
- //
- // Single Appointment%0
- //
- #define IDS_SingleAppt 0x0001101CL
- //
- // MessageId: IDS_SingleMtg
- //
- // MessageText:
- //
- // Single Meeting%0
- //
- #define IDS_SingleMtg 0x0001101DL
- //
- // MessageId: IDS_RecurAppt
- //
- // MessageText:
- //
- // Recurring Appointment%0
- //
- #define IDS_RecurAppt 0x0001101EL
- //
- // MessageId: IDS_RecurMtg
- //
- // MessageText:
- //
- // Recurring Meeting%0
- //
- #define IDS_RecurMtg 0x0001101FL
- ///////////////////////////////////////
- // time zones
- //
- // MessageId = 0x1100 through 0x11ff
- ///////////////////////////////////////
- //
- // MessageId: IDS_Universal
- //
- // MessageText:
- //
- // Universal Coordinated Time%0
- //
- #define IDS_Universal 0x00011100L
- //
- // MessageId: IDS_Greenwich
- //
- // MessageText:
- //
- // Greenwich Mean Time/Dublin/Edinburgh/London%0
- //
- #define IDS_Greenwich 0x00011101L
- //
- // MessageId: IDS_Sarajevo
- //
- // MessageText:
- //
- // Sarajevo/Warsaw/Zagreb%0
- //
- #define IDS_Sarajevo 0x00011102L
- //
- // MessageId: IDS_Paris
- //
- // MessageText:
- //
- // Paris/Madrid/Brussels/Copenhagen%0
- //
- #define IDS_Paris 0x00011103L
- //
- // MessageId: IDS_Berlin
- //
- // MessageText:
- //
- // Berlin/Stockholm/Rome/Bern/Vienna%0
- //
- #define IDS_Berlin 0x00011104L
- //
- // MessageId: IDS_EasternEurope
- //
- // MessageText:
- //
- // Bucharest/Eastern Europe%0
- //
- #define IDS_EasternEurope 0x00011105L
- //
- // MessageId: IDS_Prague
- //
- // MessageText:
- //
- // Prague/Central Europe%0
- //
- #define IDS_Prague 0x00011106L
- //
- // MessageId: IDS_Athens
- //
- // MessageText:
- //
- // Athens/Istanbul/Minsk%0
- //
- #define IDS_Athens 0x00011107L
- //
- // MessageId: IDS_Brasilia
- //
- // MessageText:
- //
- // Brasilia%0
- //
- #define IDS_Brasilia 0x00011108L
- //
- // MessageId: IDS_Atlantic
- //
- // MessageText:
- //
- // Atlantic Time (Canada)%0
- //
- #define IDS_Atlantic 0x00011109L
- //
- // MessageId: IDS_Eastern
- //
- // MessageText:
- //
- // Eastern Time (US & Canada)%0
- //
- #define IDS_Eastern 0x0001110AL
- //
- // MessageId: IDS_Central
- //
- // MessageText:
- //
- // Central Time (US & Canada)%0
- //
- #define IDS_Central 0x0001110BL
- //
- // MessageId: IDS_Mountain
- //
- // MessageText:
- //
- // Mountain Time (US & Canada)%0
- //
- #define IDS_Mountain 0x0001110CL
- //
- // MessageId: IDS_Pacific
- //
- // MessageText:
- //
- // Pacific Time (US & Canada)/Tijuana%0
- //
- #define IDS_Pacific 0x0001110DL
- //
- // MessageId: IDS_Alaska
- //
- // MessageText:
- //
- // Alaska%0
- //
- #define IDS_Alaska 0x0001110EL
- //
- // MessageId: IDS_Hawaii
- //
- // MessageText:
- //
- // Hawaii%0
- //
- #define IDS_Hawaii 0x0001110FL
- //
- // MessageId: IDS_Midway
- //
- // MessageText:
- //
- // Midway Island/Samoa%0
- //
- #define IDS_Midway 0x00011110L
- //
- // MessageId: IDS_Wellington
- //
- // MessageText:
- //
- // Wellington/Auckland%0
- //
- #define IDS_Wellington 0x00011111L
- //
- // MessageId: IDS_Brisbane
- //
- // MessageText:
- //
- // Brisbane/East Australia%0
- //
- #define IDS_Brisbane 0x00011112L
- //
- // MessageId: IDS_Adelaide
- //
- // MessageText:
- //
- // Adelaide/Central Australia%0
- //
- #define IDS_Adelaide 0x00011113L
- //
- // MessageId: IDS_Tokyo
- //
- // MessageText:
- //
- // Tokyo/Osaka/Sapporo%0
- //
- #define IDS_Tokyo 0x00011114L
- //
- // MessageId: IDS_Singapore
- //
- // MessageText:
- //
- // Kuala Lumpur/Singapore%0
- //
- #define IDS_Singapore 0x00011115L
- //
- // MessageId: IDS_Bangkok
- //
- // MessageText:
- //
- // Bangkok/Jakarta/Hanoi%0
- //
- #define IDS_Bangkok 0x00011116L
- //
- // MessageId: IDS_Bombay
- //
- // MessageText:
- //
- // Calcutta/Chennai/Mumbai/New Delhi/India Standard Time%0
- //
- #define IDS_Bombay 0x00011117L
- //
- // MessageId: IDS_AbuDhabi
- //
- // MessageText:
- //
- // Abu Dhabi/Muscat%0
- //
- #define IDS_AbuDhabi 0x00011118L
- //
- // MessageId: IDS_Tehran
- //
- // MessageText:
- //
- // Tehran%0
- //
- #define IDS_Tehran 0x00011119L
- //
- // MessageId: IDS_Baghdad
- //
- // MessageText:
- //
- // Baghdad%0
- //
- #define IDS_Baghdad 0x0001111AL
- //
- // MessageId: IDS_Israel
- //
- // MessageText:
- //
- // Israel/Jerusalem Standard Time%0
- //
- #define IDS_Israel 0x0001111BL
- //
- // MessageId: IDS_Newfoundland
- //
- // MessageText:
- //
- // Newfoundland%0
- //
- #define IDS_Newfoundland 0x0001111CL
- //
- // MessageId: IDS_Azores
- //
- // MessageText:
- //
- // Azores%0
- //
- #define IDS_Azores 0x0001111DL
- //
- // MessageId: IDS_MidAtlantic
- //
- // MessageText:
- //
- // Mid-Atlantic%0
- //
- #define IDS_MidAtlantic 0x0001111EL
- //
- // MessageId: IDS_Monrovia
- //
- // MessageText:
- //
- // Monrovia/Casablanca%0
- //
- #define IDS_Monrovia 0x0001111FL
- //
- // MessageId: IDS_BuenosAires
- //
- // MessageText:
- //
- // Buenos Aires/Georgetown%0
- //
- #define IDS_BuenosAires 0x00011120L
- //
- // MessageId: IDS_Caracas
- //
- // MessageText:
- //
- // Caracas/La Paz%0
- //
- #define IDS_Caracas 0x00011121L
- //
- // MessageId: IDS_Indiana
- //
- // MessageText:
- //
- // Indiana (East)%0
- //
- #define IDS_Indiana 0x00011122L
- //
- // MessageId: IDS_Bogota
- //
- // MessageText:
- //
- // Bogota/Lima%0
- //
- #define IDS_Bogota 0x00011123L
- //
- // MessageId: IDS_Saskatchewan
- //
- // MessageText:
- //
- // Saskatchewan%0
- //
- #define IDS_Saskatchewan 0x00011124L
- //
- // MessageId: IDS_Mexico
- //
- // MessageText:
- //
- // Mexico City/Tegucigalpa%0
- //
- #define IDS_Mexico 0x00011125L
- //
- // MessageId: IDS_Arizona
- //
- // MessageText:
- //
- // Arizona%0
- //
- #define IDS_Arizona 0x00011126L
- //
- // MessageId: IDS_Eniwetok
- //
- // MessageText:
- //
- // Eniwetok/Kwajalein/Dateline Time%0
- //
- #define IDS_Eniwetok 0x00011127L
- //
- // MessageId: IDS_Fiji
- //
- // MessageText:
- //
- // Fiji/Kamchatka/Marshall Is.%0
- //
- #define IDS_Fiji 0x00011128L
- //
- // MessageId: IDS_Magadan
- //
- // MessageText:
- //
- // Magadan/Solomon Is./New Caledonia%0
- //
- #define IDS_Magadan 0x00011129L
- //
- // MessageId: IDS_Hobart
- //
- // MessageText:
- //
- // Hobart/Tasmania%0
- //
- #define IDS_Hobart 0x0001112AL
- //
- // MessageId: IDS_Guam
- //
- // MessageText:
- //
- // Guam/Port Moresby%0
- //
- #define IDS_Guam 0x0001112BL
- //
- // MessageId: IDS_Darwin
- //
- // MessageText:
- //
- // Darwin%0
- //
- #define IDS_Darwin 0x0001112CL
- //
- // MessageId: IDS_Beijing
- //
- // MessageText:
- //
- // Beijing/Chongqing/Hong Kong/Urumqi%0
- //
- #define IDS_Beijing 0x0001112DL
- //
- // MessageId: IDS_Almaty
- //
- // MessageText:
- //
- // Almaty/North Central Asia/Novosibirsk%0
- //
- #define IDS_Almaty 0x0001112EL
- //
- // MessageId: IDS_Islamabad
- //
- // MessageText:
- //
- // Islamabad/Karachi/Sverdlovsk/Tashkent%0
- //
- #define IDS_Islamabad 0x0001112FL
- //
- // MessageId: IDS_Kabul
- //
- // MessageText:
- //
- // Kabul%0
- //
- #define IDS_Kabul 0x00011130L
- //
- // MessageId: IDS_Cairo
- //
- // MessageText:
- //
- // Cairo%0
- //
- #define IDS_Cairo 0x00011131L
- //
- // MessageId: IDS_Harare
- //
- // MessageText:
- //
- // Harare/Pretoria%0
- //
- #define IDS_Harare 0x00011132L
- //
- // MessageId: IDS_Moscow
- //
- // MessageText:
- //
- // Moscow/St. Petersburg/Volgograd%0
- //
- #define IDS_Moscow 0x00011133L
- //
- // MessageId: IDS_CapeVerde
- //
- // MessageText:
- //
- // Cape Verde Is.%0
- //
- #define IDS_CapeVerde 0x00011134L
- //
- // MessageId: IDS_Caucasus
- //
- // MessageText:
- //
- // Caucasus/Baku/Tbilisi/Yerevan%0
- //
- #define IDS_Caucasus 0x00011135L
- //
- // MessageId: IDS_CentralAmerica
- //
- // MessageText:
- //
- // Central America%0
- //
- #define IDS_CentralAmerica 0x00011136L
- //
- // MessageId: IDS_EastAfrica
- //
- // MessageText:
- //
- // East Africa/Nairobi%0
- //
- #define IDS_EastAfrica 0x00011137L
- //
- // MessageId: IDS_Melbourne
- //
- // MessageText:
- //
- // Melbourne/Sydney%0
- //
- #define IDS_Melbourne 0x00011138L
- //
- // MessageId: IDS_Ekaterinburg
- //
- // MessageText:
- //
- // Ekaterinburg%0
- //
- #define IDS_Ekaterinburg 0x00011139L
- //
- // MessageId: IDS_Helsinki
- //
- // MessageText:
- //
- // Helsinki/Riga/Tallinn%0
- //
- #define IDS_Helsinki 0x0001113AL
- //
- // MessageId: IDS_Greenland
- //
- // MessageText:
- //
- // Greenland%0
- //
- #define IDS_Greenland 0x0001113BL
- //
- // MessageId: IDS_Rangoon
- //
- // MessageText:
- //
- // Rangoon%0
- //
- #define IDS_Rangoon 0x0001113CL
- //
- // MessageId: IDS_Nepal
- //
- // MessageText:
- //
- // Kathmandu/Nepal%0
- //
- #define IDS_Nepal 0x0001113DL
- //
- // MessageId: IDS_Irkutsk
- //
- // MessageText:
- //
- // Irkutsk/Ulaan Bataar%0
- //
- #define IDS_Irkutsk 0x0001113EL
- //
- // MessageId: IDS_Krasnoyarsk
- //
- // MessageText:
- //
- // Krasnoyarsk/North Asia%0
- //
- #define IDS_Krasnoyarsk 0x0001113FL
- //
- // MessageId: IDS_Santiago
- //
- // MessageText:
- //
- // Santiago%0
- //
- #define IDS_Santiago 0x00011140L
- //
- // MessageId: IDS_SriLanka
- //
- // MessageText:
- //
- // Sri Jayawardenepura/Sri Lanka%0
- //
- #define IDS_SriLanka 0x00011141L
- //
- // MessageId: IDS_Tonga
- //
- // MessageText:
- //
- // Tonga/Nuku'alofa%0
- //
- #define IDS_Tonga 0x00011142L
- //
- // MessageId: IDS_Vladivostok
- //
- // MessageText:
- //
- // Vladivostok%0
- //
- #define IDS_Vladivostok 0x00011143L
- //
- // MessageId: IDS_WestCentralAfrica
- //
- // MessageText:
- //
- // West Central Africa%0
- //
- #define IDS_WestCentralAfrica 0x00011144L
- //
- // MessageId: IDS_Yakutsk
- //
- // MessageText:
- //
- // Yakutsk%0
- //
- #define IDS_Yakutsk 0x00011145L
- //
- // MessageId: IDS_Dhaka
- //
- // MessageText:
- //
- // Astana/Dhaka%0
- //
- #define IDS_Dhaka 0x00011146L
- //
- // MessageId: IDS_Seoul
- //
- // MessageText:
- //
- // Seoul/Korea Standard Time%0
- //
- #define IDS_Seoul 0x00011147L
- //
- // MessageId: IDS_Perth
- //
- // MessageText:
- //
- // Perth/Western Australia%0
- //
- #define IDS_Perth 0x00011148L
- //
- // MessageId: IDS_Arab
- //
- // MessageText:
- //
- // Arab/Kuwait/Riyadh%0
- //
- #define IDS_Arab 0x00011149L
- //
- // MessageId: IDS_Taipei
- //
- // MessageText:
- //
- // Taipei%0
- //
- #define IDS_Taipei 0x0001114AL
- //
- // MessageId: IDS_Sydney2000
- //
- // MessageText:
- //
- // Canberra/Melbourne/Sydney/Hobart (Year 2000 only)%0
- //
- #define IDS_Sydney2000 0x0001114BL
- ///////////////////////////////////////
- // EXCDO messages
- //
- // MessageId = 0x2000 through 0x2fff, localized in server languages.
- ///////////////////////////////////////
- #ifdef CDOSVR
- //
- // MessageId: evtMethodCalled
- //
- // MessageText:
- //
- // %1 Event on %2 called with Flags %3
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtMethodCalled 0x00032000L
- //
- // MessageId: evtMethodReturning
- //
- // MessageText:
- //
- // %1 Event Method is returning with HRESULT %2
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtMethodReturning 0x00032001L
- //
- // MessageId: evtIsAborting
- //
- // MessageText:
- //
- // %1 Event Method is halting, HRESULT %2
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtIsAborting 0xC0032002L
- //
- // MessageId: evtExpansionInitialized
- //
- // MessageText:
- //
- // Calendaring agent is initialized successfully.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionInitialized 0x00032003L
- //
- // MessageId: evtExpansionUnInitialized
- //
- // MessageText:
- //
- // Calendaring agent is stopping successfully.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionUnInitialized 0x00032004L
- //
- // MessageId: evtExpansionInitializeFailed
- //
- // MessageText:
- //
- // Calendaring agent failed to initialize with error %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionInitializeFailed 0xC0032005L
- //
- // MessageId: evtExpansionRegisterFailed
- //
- // MessageText:
- //
- // Calendaring recurring item expansion failed to register for notifications for MDB %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionRegisterFailed 0xC0032006L
- //
- // MessageId: evtExpansionMessageSaveChangesFailed
- //
- // MessageText:
- //
- // Calendaring agent failed in message save notification with error %1 on URL %2.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionMessageSaveChangesFailed 0xC0032007L
- //
- // MessageId: evtExpansionMessageDeleteFailed
- //
- // MessageText:
- //
- // Calendaring agent failed in message delete notification with error %1 on URL %2.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionMessageDeleteFailed 0xC0032008L
- //
- // MessageId: evtExpansionFolderSaveChangesFailed
- //
- // MessageText:
- //
- // Calendaring agent failed in folder save notification with error %1 on URL %2.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionFolderSaveChangesFailed 0xC0032009L
- //
- // MessageId: evtExpansionTooManyInstancesPerDay
- //
- // MessageText:
- //
- // Calendaring agent truncated expansion after %1 instances per day.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionTooManyInstancesPerDay 0x8003200AL
- //
- // MessageId: evtMailboxCreateTotalFailure
- //
- // MessageText:
- //
- // The mailbox creation callback failed to create any folders in mailbox %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtMailboxCreateTotalFailure 0xC003200BL
- //
- // MessageId: evtMailboxCreatePartialFailure
- //
- // MessageText:
- //
- // The mailbox creation callback failed to create one or more folders in mailbox %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtMailboxCreatePartialFailure 0xC003200CL
- //
- // MessageId: evtUninitImplRestFailed
- //
- // MessageText:
- //
- // Calendaring agent failed to uninitialize implied restriction with error %1 on URL %2.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUninitImplRestFailed 0xC003200DL
- //
- // MessageId: evtExpandSavingAppt
- //
- // MessageText:
- //
- // Calendaring agent failed with error code %1 while saving appointment.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpandSavingAppt 0xC003200EL
- //
- // MessageId: evtExpandDeletingAppt
- //
- // MessageText:
- //
- // Calendaring agent failed with error code %1 while deleting appointment.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpandDeletingAppt 0xC003200FL
- //
- // MessageId: evtExpandQuery
- //
- // MessageText:
- //
- // Calendaring agent failed with error code %1 while expanding recurring appointments.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpandQuery 0xC0032010L
- //
- // MessageId: evtExpandFolderSetProps
- //
- // MessageText:
- //
- // Calendaring agent failed with error code %1 while cleaning up the calendar.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpandFolderSetProps 0xC0032011L
- //
- // MessageId: evtRegistryFailure
- //
- // MessageText:
- //
- // Calendaring agent failed to open registry with error code %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtRegistryFailure 0xC0032012L
- //
- // MessageId: evtExpStat
- //
- // MessageText:
- //
- // Calendaring agent failed in the following function with error code: %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpStat 0xC0032013L
- //
- // MessageId: evtDumpFcn
- //
- // MessageText:
- //
- // Calendaring agent failed in the following function with error code %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtDumpFcn 0xC0032014L
- //
- // MessageId: evtSaveDeleteFailFBUpdate
- //
- // MessageText:
- //
- // Calendaring agent failed to update the free/busy cache during an appointment save or delete operation.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtSaveDeleteFailFBUpdate 0xC0032015L
- //
- // MessageId: evtProcessingQueryCallback
- //
- // MessageText:
- //
- // Calendaring agent failed to update the free/busy cache and internal data while processing a query.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtProcessingQueryCallback 0xC0032016L
- //
- // MessageId: evtMailboxLocalizeTotalFailure
- //
- // MessageText:
- //
- // The mailbox creation callback failed to rename any folders in mailbox %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtMailboxLocalizeTotalFailure 0xC0032017L
- //
- // MessageId: evtMailboxLocalizePartialFailure
- //
- // MessageText:
- //
- // The mailbox creation callback failed to rename one or more folders in mailbox %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtMailboxLocalizePartialFailure 0xC0032018L
- //
- // MessageId: evtExpandMaster
- //
- // MessageText:
- //
- // 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.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpandMaster 0xC0032019L
- //
- // MessageId: evtExpansionInit
- //
- // MessageText:
- //
- // A transaction failed during initialization.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionInit 0xC003201AL
- //
- // MessageId: evtFBGenerateMsg
- //
- // MessageText:
- //
- // The calendaring agent could not publish the free/busy information for "%1" because it failed reading the registry with error: %2.
- // The save/delete calendar operation for "%3" will not be completed.
- // Please ensure that MSExchangeFBPublish agent is started.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtFBGenerateMsg 0xC003201BL
- //
- // MessageId: evtExpansionInstExpiryInPublicMDB
- //
- // MessageText:
- //
- // 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.
- // This instance will no longer appear in the web clients until the master is updated manually or through replication.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpansionInstExpiryInPublicMDB 0x8003201CL
- //
- // MessageId: evtUnhandledExceptionInitialization
- //
- // MessageText:
- //
- // Unhandled exception %1 caught during initialization of server agents.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionInitialization 0xC003201DL
- //
- // MessageId: evtUnhandledExceptionShutdown
- //
- // MessageText:
- //
- // Unhandled exception %1 caught trying to stop server agents.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionShutdown 0xC003201EL
- //
- // MessageId: evtUnhandledExceptionInitializationMDB
- //
- // MessageText:
- //
- // Unhandled exception %1 caught during initialization of server agents while an MDB is mounted.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionInitializationMDB 0xC003201FL
- //
- // MessageId: evtUnhandledExceptionShutdownMDB
- //
- // MessageText:
- //
- // Unhandled exception %1 caught trying to stop server agents while an MDB is unmounted.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionShutdownMDB 0xC0032020L
- //
- // MessageId: evtUnhandledExceptionMsgSaveChanges
- //
- // MessageText:
- //
- // Unhandled exception %1 caught during message save changes notification.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionMsgSaveChanges 0xC0032021L
- //
- // MessageId: evtUnhandledExceptionDelete
- //
- // MessageText:
- //
- // Unhandled exception %1 caught during deletion notification.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionDelete 0xC0032022L
- //
- // MessageId: evtUnhandledExceptionQuery
- //
- // MessageText:
- //
- // Unhandled exception %1 caught during query processing.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionQuery 0xC0032023L
- //
- // MessageId: evtUnhandledExceptionFolderSaveChanges
- //
- // MessageText:
- //
- // Unhandled exception %1 caught during folder save changes notification.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtUnhandledExceptionFolderSaveChanges 0xC0032024L
- //
- // MessageId: evtCorruptedCalendar
- //
- // MessageText:
- //
- // The calendar for the mailbox %1 is corrupted. This calendar needs to be recreated.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtCorruptedCalendar 0xC0032025L
- //
- // MessageId: evtRebuildCalendar
- //
- // MessageText:
- //
- // The calendar for the mailbox %1 is corrupted. The recurrence expansion database for this calendar is being rebuilt.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtRebuildCalendar 0x80032026L
- //
- // MessageId: evtCheckPrimaryCalendar
- //
- // MessageText:
- //
- // Calendar agent failed to determine the primary calendar for mailbox: %1.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtCheckPrimaryCalendar 0x80032027L
- //
- // MessageId: evtExpandMasterPF
- //
- // MessageText:
- //
- // 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.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtExpandMasterPF 0xC0032028L
- //
- // MessageId: evtCorruptedPFCalendar
- //
- // MessageText:
- //
- // The public folder %1 is corrupted. This calendar needs to be recreated.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtCorruptedPFCalendar 0xC0032029L
- //
- // MessageId: evtRebuildPFCalendar
- //
- // MessageText:
- //
- // The public folder %1 is corrupted. The recurrence expansion database for this calendar is being rebuilt.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtRebuildPFCalendar 0x8003202AL
- //
- // MessageId: evtMovingMailboxCallbackFailed
- //
- // MessageText:
- //
- // Clearing the calendar instances before a move failed for mailbox %1 with error %2.
- // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
- //
- #define evtMovingMailboxCallbackFailed 0x8003202BL
- #endif
|