You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
347 B
C
15 lines
347 B
C
#ifndef __SXMPL_INTERNAL_H__
|
|
#define __SXMPL_INTERNAL_H__
|
|
|
|
/* link related */
|
|
int _sxmpl_writemsg(sxlink_t *co, sxmsg_t *msg);
|
|
|
|
/* channel operations */
|
|
uint8_t _channel_open(sxlink_t *co, uint16_t *chid);
|
|
uint8_t _channel_close(sxlink_t *co, uint16_t chid);
|
|
|
|
/* messages */
|
|
void _message_process(sxmsg_t *msg);
|
|
|
|
#endif /* __SXMPL_INTERNAL_H__ */
|