Download
cyberslak
/lightsout
/channel.h
(View History)
| cyberslak remove unused channel code | Latest amendment: 21 on 2025-03-15 |
| 1 | #include "stdint.h" |
| 2 | |
| 3 | typedef struct channel channel; |
| 4 | |
| 5 | channel* channel_open(size_t bufsize); |
| 6 | void channel_close(channel* c); |
| 7 | |
| 8 | short channel_send(channel* c, Ptr data); |
| 9 | short channel_recv(channel* c, Ptr* data); |