diff options
author | nicm <nicm> | 2016-04-29 13:21:33 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-04-29 13:21:33 +0000 |
commit | 5f2bfd980737d2f13b744e288532e5d2daf97a0f (patch) | |
tree | 347772bf562e9b68544138be0bb1061a3fb36ac9 /tmux.h | |
parent | 97417a18130ea17dbf9ab62b5e6dabb25376a988 (diff) | |
download | rtmux-5f2bfd980737d2f13b744e288532e5d2daf97a0f.tar.gz rtmux-5f2bfd980737d2f13b744e288532e5d2daf97a0f.tar.bz2 rtmux-5f2bfd980737d2f13b744e288532e5d2daf97a0f.zip |
Make the grid_cell passed into screen_write_* const.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -2034,15 +2034,15 @@ void screen_write_stop(struct screen_write_ctx *); void screen_write_reset(struct screen_write_ctx *); size_t printflike(1, 2) screen_write_cstrlen(const char *, ...); void printflike(4, 5) screen_write_cnputs(struct screen_write_ctx *, - ssize_t, struct grid_cell *, const char *, ...); + ssize_t, const struct grid_cell *, const char *, ...); size_t printflike(1, 2) screen_write_strlen(const char *, ...); void printflike(3, 4) screen_write_puts(struct screen_write_ctx *, - struct grid_cell *, const char *, ...); + const struct grid_cell *, const char *, ...); void printflike(4, 5) screen_write_nputs(struct screen_write_ctx *, - ssize_t, struct grid_cell *, const char *, ...); + ssize_t, const struct grid_cell *, const char *, ...); void screen_write_vnputs(struct screen_write_ctx *, ssize_t, - struct grid_cell *, const char *, va_list); -void screen_write_putc(struct screen_write_ctx *, struct grid_cell *, + const struct grid_cell *, const char *, va_list); +void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *, u_char); void screen_write_copy(struct screen_write_ctx *, struct screen *, u_int, u_int, u_int, u_int); |