diff options
author | David Lamparter <equinox@diac24.net> | 2016-05-15 14:15:39 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2016-05-15 14:15:39 +0200 |
commit | 0591adffc658d9e5a7b47feb59282b2505a32209 (patch) | |
tree | 857a5587be1b56f56def688f4c33ebd432b2cd78 /cethcan/cethcan.h | |
parent | 5c553ecfbda79bb6f0f3204f1e1d10862885b3f2 (diff) |
cethcan: hook up ttydmx on RPC
Diffstat (limited to 'cethcan/cethcan.h')
-rw-r--r-- | cethcan/cethcan.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cethcan/cethcan.h b/cethcan/cethcan.h index 4d215f0..b272766 100644 --- a/cethcan/cethcan.h +++ b/cethcan/cethcan.h @@ -96,6 +96,13 @@ extern int espnet_set(struct espnet_device *dev, extern void espnet_get(struct espnet_device *dev, unsigned *r, unsigned *g, unsigned *b); +struct ttydmx_device; +struct ttydmx_device *ttydmx_find(const char *name); +extern int ttydmx_set(struct ttydmx_device *dev, + unsigned r, unsigned g, unsigned b); +extern void ttydmx_get(struct ttydmx_device *dev, + unsigned *r, unsigned *g, unsigned *b); + extern void json_bump_longpoll(void); extern int socan_init(json_t *config); |