⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cdoerr.h

📁 希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!
💻 H
📖 第 1 页 / 共 2 页
字号:
#pragma option push -b -a8 -pc -A- /*P_O_Push*/






//
//  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: CDO_E_FAIL
//
// MessageText:
//
//  AnBrad memorial error
//
#define CDO_E_FAIL                       0x80040200L

//
// MessageId: CDO_E_UNCAUGHT_EXCEPTION
//
// MessageText:
//
//  Exception %1 was generated at address %2
//
#define CDO_E_UNCAUGHT_EXCEPTION         0x80040201L

//
// MessageId: CDO_E_NOT_BOUND
//
// MessageText:
//
//  The object is not bound to a data source
//
#define CDO_E_NOT_BOUND                  0x80040202L

//
// MessageId: CDO_E_UNSUPPORTED_DATASOURCE
//
// MessageText:
//
//  The datasource is not supported by this object
//
#define CDO_E_UNSUPPORTED_DATASOURCE     0x80040203L

//
// MessageId: CDO_E_INVALID_PROPERTYNAME
//
// MessageText:
//
//  Invalid property name
//
#define CDO_E_INVALID_PROPERTYNAME       0x80040204L

//
// MessageId: CDO_E_CUSTOMPROP_UNSUPPORTED
//
// MessageText:
//
//  Custom property is not supported by this object class
//
#define CDO_E_CUSTOMPROP_UNSUPPORTED     0x80040205L

//
// MessageId: CDO_E_NOTINITIALIZED
//
// MessageText:
//
//  The object is not initialized
//
#define CDO_E_NOTINITIALIZED             0x80040206L

//
// MessageId: CDO_E_INVALID_ENCODING_TYPE
//
// MessageText:
//
//  Invalid encoding type
//
#define CDO_E_INVALID_ENCODING_TYPE      0x80040207L

//
// MessageId: CDO_E_NO_SUPPORT_FOR_OBJECTS
//
// MessageText:
//
//  No support to store objects.
//
#define CDO_E_NO_SUPPORT_FOR_OBJECTS     0x80040208L

//
// MessageId: CDO_E_PROP_NOT_AVAILABLE
//
// MessageText:
//
//  This property is not available.
//
#define CDO_E_PROP_NOT_AVAILABLE         0x80040209L

//
// MessageId: CDO_E_NO_DEFAULT_DROP_DIR
//
// MessageText:
//
//  There is no default drop directory available.
//
#define CDO_E_NO_DEFAULT_DROP_DIR        0x8004020AL

//
// MessageId: CDO_E_SKIP_ALL_SINKS
//
// MessageText:
//
//  Skip all remaining sinks for this event.
//
#define CDO_E_SKIP_ALL_SINKS             0x8004020BL

//
// MessageId: CDO_E_SMTP_SERVER_REQUIRED
//
// MessageText:
//
//  SMTP server name is required.
//
#define CDO_E_SMTP_SERVER_REQUIRED       0x8004020CL

//
// MessageId: CDO_E_NNTP_SERVER_REQUIRED
//
// MessageText:
//
//  NNTP server name is required.
//
#define CDO_E_NNTP_SERVER_REQUIRED       0x8004020DL

//
// MessageId: CDO_E_RECIPIENT_MISSING
//
// MessageText:
//
//  A required recipient is missing.
//
#define CDO_E_RECIPIENT_MISSING          0x8004020EL

//
// MessageId: CDO_E_SENDER_REJECTED
//
// MessageText:
//
//  The sender address was rejected.
//
#define CDO_E_SENDER_REJECTED            0x8004020FL

//
// MessageId: CDO_E_RECIPIENTS_REJECTED
//
// MessageText:
//
//  The recipients addresses were rejected.
//
#define CDO_E_RECIPIENTS_REJECTED        0x80040210L

//
// MessageId: CDO_E_SOCKET_WRITE_ERROR
//
// MessageText:
//
//  The transport reported a socket write error.
//
#define CDO_E_SOCKET_WRITE_ERROR         0x80040211L

//
// MessageId: CDO_E_NNTP_POST_FAILED
//
// MessageText:
//
//  The transport reported a post failed error.
//
#define CDO_E_NNTP_POST_FAILED           0x80040212L

//
// MessageId: CDO_E_CONNECTION_DROPPED
//
// MessageText:
//
//  The transport lost the connecion to the server.
//
#define CDO_E_CONNECTION_DROPPED         0x80040213L

//
// MessageId: CDO_E_FAILED_TO_CONNECT
//
// MessageText:
//
//  The transport failed to connect to the server.
//
#define CDO_E_FAILED_TO_CONNECT          0x80040214L

//
// MessageId: CDO_E_INVALID_POST
//
// MessageText:
//
//  Both the subject field and the newsgroup field must be present.
//
#define CDO_E_INVALID_POST               0x80040215L

//
// MessageId: CDO_E_INVALID_CONTENT_TYPE
//
// MessageText:
//
//  The content type cannot be added to the message.
//
#define CDO_E_INVALID_CONTENT_TYPE       0x80040216L




//
// 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








//
// MessageId: XX_MIME_E_REG_CREATE_KEY
//
// MessageText:
//
//  XX_MIME_E_REG_CREATE_KEY
//
#define XX_MIME_E_REG_CREATE_KEY         0x800CCE01L

//
// MessageId: XX_MIME_E_REG_QUERY_INFO
//
// MessageText:
//
//  XX_MIME_E_REG_QUERY_INFO
//
#define XX_MIME_E_REG_QUERY_INFO         0x800CCE02L

//
// MessageId: XX_MIME_E_INVALID_ENCTYPE
//
// MessageText:
//
//  XX_MIME_E_INVALID_ENCTYPE
//
#define XX_MIME_E_INVALID_ENCTYPE        0x800CCE03L

//
// MessageId: XX_MIME_E_BOUNDARY_MISMATCH
//
// MessageText:
//
//  XX_MIME_E_BOUNDARY_MISMATCH
//
#define XX_MIME_E_BOUNDARY_MISMATCH      0x800CCE04L

//
// MessageId: XX_MIME_E_NOT_FOUND
//
// MessageText:
//
//  XX_MIME_E_NOT_FOUND
//
#define XX_MIME_E_NOT_FOUND              0x800CCE05L


//
// MessageId: XX_MIME_E_BUFFER_TOO_SMALL
//
// MessageText:
//
//  XX_MIME_E_BUFFER_TOO_SMALL
//
#define XX_MIME_E_BUFFER_TOO_SMALL       0x800CCE06L

//
// MessageId: XX_MIME_E_INVALID_ITEM_FLAGS
//
// MessageText:
//
//  XX_MIME_E_INVALID_ITEM_FLAGS
//
#define XX_MIME_E_INVALID_ITEM_FLAGS     0x800CCE07L

//
// MessageId: XX_MIME_E_ONE_LINE_ITEM
//
// MessageText:
//
//  XX_MIME_E_ONE_LINE_ITEM
//
#define XX_MIME_E_ONE_LINE_ITEM          0x800CCE08L

//
// MessageId: XX_MIME_E_INVALID_HANDLE
//
// MessageText:
//
//  XX_MIME_E_INVALID_HANDLE
//
#define XX_MIME_E_INVALID_HANDLE         0x800CCE09L

//
// MessageId: XX_MIME_E_CHARSET_TRANSLATE
//
// MessageText:
//
//  XX_MIME_E_CHARSET_TRANSLATE
//
#define XX_MIME_E_CHARSET_TRANSLATE      0x800CCE0AL

//
// MessageId: XX_MIME_E_NOT_INITIALIZED
//
// MessageText:
//
//  XX_MIME_E_NOT_INITIALIZED
//
#define XX_MIME_E_NOT_INITIALIZED        0x800CCE0BL

//
// MessageId: XX_MIME_E_NO_MORE_ROWS
//
// MessageText:
//
//  XX_MIME_E_NO_MORE_ROWS
//
#define XX_MIME_E_NO_MORE_ROWS           0x800CCE0CL

//
// MessageId: XX_MIME_E_ALREADY_BOUND
//
// MessageText:
//
//  XX_MIME_E_ALREADY_BOUND
//
#define XX_MIME_E_ALREADY_BOUND          0x800CCE0DL

//
// MessageId: XX_MIME_E_CANT_RESET_ROOT
//
// MessageText:
//
//  XX_MIME_E_CANT_RESET_ROOT
//
#define XX_MIME_E_CANT_RESET_ROOT        0x800CCE0EL

//
// MessageId: XX_MIME_E_INSERT_NOT_ALLOWED
//
// MessageText:
//
//  XX_MIME_E_INSERT_NOT_ALLOWED
//
#define XX_MIME_E_INSERT_NOT_ALLOWED     0x800CCE0FL

//
// MessageId: XX_MIME_E_BAD_BODY_LOCATION
//
// MessageText:
//
//  XX_MIME_E_BAD_BODY_LOCATION
//
#define XX_MIME_E_BAD_BODY_LOCATION      0x800CCE10L

//
// MessageId: XX_MIME_E_NOT_MULTIPART
//
// MessageText:
//
//  XX_MIME_E_NOT_MULTIPART
//
#define XX_MIME_E_NOT_MULTIPART          0x800CCE11L

//
// MessageId: XX_MIME_E_NO_MULTIPART_BOUNDARY
//
// MessageText:
//
//  XX_MIME_E_NO_MULTIPART_BOUNDARY
//
#define XX_MIME_E_NO_MULTIPART_BOUNDARY  0x800CCE12L

//
// MessageId: XX_MIME_E_CONVERT_NOT_NEEDED
//
// MessageText:
//
//  XX_MIME_E_CONVERT_NOT_NEEDED
//
#define XX_MIME_E_CONVERT_NOT_NEEDED     0x800CCE13L

//
// MessageId: XX_MIME_E_CANT_MOVE_BODY
//
// MessageText:
//
//  XX_MIME_E_CANT_MOVE_BODY
//
#define XX_MIME_E_CANT_MOVE_BODY         0x800CCE14L

//
// MessageId: XX_MIME_E_UNKNOWN_BODYTREE_VERSION
//
// MessageText:
//
//  XX_MIME_E_UNKNOWN_BODYTREE_VERSION
//
#define XX_MIME_E_UNKNOWN_BODYTREE_VERSION 0x800CCE15L

//
// MessageId: XX_MIME_E_NOTHING_TO_SAVE
//
// MessageText:
//
//  XX_MIME_E_NOTHING_TO_SAVE
//
#define XX_MIME_E_NOTHING_TO_SAVE        0x800CCE16L

//
// MessageId: XX_MIME_E_NEED_SAVE_MESSAGE
//
// MessageText:
//
//  XX_MIME_E_NEED_SAVE_MESSAGE
//
#define XX_MIME_E_NEED_SAVE_MESSAGE      0x800CCE17L

//
// MessageId: XX_MIME_E_NOTHING_TO_REVERT
//
// MessageText:
//
//  XX_MIME_E_NOTHING_TO_REVERT
//
#define XX_MIME_E_NOTHING_TO_REVERT      0x800CCE18L

//
// MessageId: XX_MIME_E_MSG_SIZE_DIFF
//
// MessageText:
//
//  XX_MIME_E_MSG_SIZE_DIFF
//
#define XX_MIME_E_MSG_SIZE_DIFF          0x800CCE19L

//
// MessageId: XX_MIME_E_CANT_RESET_PARENT
//
// MessageText:
//
//  XX_MIME_E_CANT_RESET_PARENT

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -