Server function naming, still not happy with server stuff though.

This commit is contained in:
Nicholas Marriott
2007-09-26 18:09:23 +00:00
parent 65eeb7e421
commit 302a35da85
6 changed files with 76 additions and 78 deletions

16
tmux.h
View File

@ -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 *);