diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-26 18:09:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-26 18:09:23 +0000 |
commit | 302a35da85c223aae29b4d356787ee492c9b56d7 (patch) | |
tree | 3f9988645f29cad5e427e00bc29e4edbcaf60239 /tmux.h | |
parent | 65eeb7e421718e248790d858792fd820aabbdbe6 (diff) | |
download | rtmux-302a35da85c223aae29b4d356787ee492c9b56d7.tar.gz rtmux-302a35da85c223aae29b4d356787ee492c9b56d7.tar.bz2 rtmux-302a35da85c223aae29b4d356787ee492c9b56d7.zip |
Server function naming, still not happy with server stuff though.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.12 2007-09-26 13:43:15 nicm Exp $ */ +/* $Id: tmux.h,v 1.13 2007-09-26 18:09:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -462,15 +462,15 @@ int server_start(char *); int server_msg_dispatch(struct client *); /* server-fn.c */ -void write_message(struct client *, const char *, ...); -void write_client(struct client *, u_int, void *, size_t); -void write_client2( +void server_write_message(struct client *, const char *, ...); +void server_write_client(struct client *, u_int, void *, size_t); +void server_write_client2( struct client *, u_int, void *, size_t, void *, size_t); -void write_clients(struct window *, u_int, void *, size_t); -void changed_window(struct client *); -void draw_client(struct client *, u_int, u_int); +void server_write_clients(struct window *, u_int, void *, size_t); +void server_window_changed(struct client *); +void server_draw_client(struct client *, u_int, u_int); -/* ansi.c */ +/* input.c */ void input_key(struct buffer *, int); size_t input_parse(u_char *, size_t, struct buffer *, struct screen *); uint8_t input_extract8(struct buffer *); |