Drop -Werror
[pmc.git] / screen.h
blob74ac0a00d7a02ffe36708fe16a9d17afd4d01e1b
1 #ifndef _SCREEN_H
2 #define _SCREEN_H
4 #define BAR_TOP 0
5 #define BAR_BOTTOM 1
7 int pmc_buffer(void *s, const char *data, size_t len);
8 int pmc_copyout(void *s, char *circbuf); /* copy input out to circular buffer */
9 int pmc_update(void *s);
10 void * pmc_init(void);
11 int pmc_listen(void *s);
12 void pmc_resize(void *s);
13 void pmc_write_bar(void *s, int bar, const char *val);
14 char * pmc_get_scrollback(void *s);
16 #endif