#include "stdint.h" typedef struct channel channel; channel* channel_open(size_t bufsize); void channel_close(channel* c); short channel_send(channel* c, Ptr data); short channel_recv(channel* c, Ptr* data);