protos added;

This commit is contained in:
Alexander Vdolainen 2015-07-20 20:41:11 +03:00
parent 4d10b4dc86
commit 1a7b18d749

View File

@ -57,3 +57,57 @@ void _message_process(sxmsg_t *msg)
sxmsg_return(msg, r);
return;
}
int sxmsg_send(chnl_t *channel, const char *data, size_t datalen, sxmsg_t **msg)
{
return SNE_FAILED;
}
/* the same - postponed message i.e. will be written to the queue - not to write immendatly */
int sxmsg_send_pp(chnl_t *channel, const char *data, size_t datalen, sxmsg_t **msg)
{
return SNE_FAILED;
}
/* send a pulse message */
int sxmsg_pulse(conn_t *co, const char *data, size_t datalen)
{
return SNE_FAILED;
}
/* the same but will be postponed */
int sxmsg_pulse_pp(conn_t *co, const char *data, size_t datalen)
{
return SNE_FAILED;
}
int sxmsg_reply(sxmsg_t *msg, const char *data, size_t datalen)
{
return SNE_FAILED;
}
int sxmsg_reply_pp(sxmsg_t *msg, const char *data, size_t datalen)
{
return SNE_FAILED;
}
int sxmsg_rreply(sxmsg_t *msg, const char *data, size_t datalen)
{
return SNE_FAILED;
}
int sxmsg_rreply_pp(sxmsg_t *msg, const char *data, size_t datalen)
{
return SNE_FAILED;
}
int sxmsg_return(sxmsg_t *msg, int opcode)
{
return SNE_FAILED;
}
int sxmsg_return_pp(sxmsg_t *msg, int opcode)
{
return SNE_FAILED;
}