libsxmp/lib/internal.h

15 lines
341 B
C
Raw Normal View History

2015-07-20 18:59:32 +03:00
#ifndef __SNTLL_INTERNAL_H__
#define __SNTLL_INTERNAL_H__
2015-07-20 20:33:51 +03:00
/* link related */
int _sntll_writemsg(conn_t *co, sxmsg_t *msg);
2015-07-20 18:59:32 +03:00
/* channel operations */
uint8_t _channel_open(conn_t *co, uint16_t *chid);
uint8_t _channel_close(conn_t *co, uint16_t chid);
2015-07-20 19:15:08 +03:00
/* messages */
void _message_process(sxmsg_t *msg);
2015-07-20 18:59:32 +03:00
#endif /* __SNTLL_INTERNAL_H__ */