本文整理汇总了C++中CInterface::send_error方法的典型用法代码示例。如果您正苦于以下问题:C++ CInterface::send_error方法的具体用法?C++ CInterface::send_error怎么用?C++ CInterface::send_error使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CInterface
的用法示例。
在下文中一共展示了CInterface::send_error方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
CEE_status
odbc_SQLSvc_MonitorCall_ts_res_(
/* In */ CEE_tag_def objtag_
, /* In */ const CEE_handle_def *call_id_
, /* In */ const struct odbc_SQLSvc_MonitorCall_exc_ *exception_
)
{
SRVRTRACE_ENTER(FILE_OIOM+22);
CInterface* pnode = (CInterface*)objtag_;
CEE_status sts = CEE_SUCCESS;
CEERCV_IOMessage_exc_ RCVexception_;
IDL_short error;
short reply_count;
CEERCV_IOMessage_reply_seq_ reply;
char* buffer = NULL;
UInt32 message_length = 0;
odbc_SQLSvc_MonitorCall_param_res_(
pnode
, buffer
, message_length
, exception_);
if (sts == CEE_SUCCESS)
sts = pnode->send_response(buffer, message_length, call_id_);
if (sts != CEE_SUCCESS)
pnode->send_error(sts, 0, call_id_);
SRVRTRACE_EXIT(FILE_OIOM+22);
return sts;
}