From 0450b4a5d436c1408b399150a89cbb2e7982f23f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 13 Feb 2009 18:57:55 +0000 Subject: Move status prompt/message init and teardown into status.c. --- tmux.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index af3c024b..2ef9521e 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.271 2009-02-13 00:43:04 nicm Exp $ */ +/* $Id: tmux.h,v 1.272 2009-02-13 18:57:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1277,11 +1277,6 @@ int server_start(const char *); int server_msg_dispatch(struct client *); /* server-fn.c */ -void server_set_client_message(struct client *, const char *); -void server_clear_client_message(struct client *); -void server_set_client_prompt(struct client *, - const char *, int (*)(void *, const char *), void *, int); -void server_clear_client_prompt(struct client *); struct session *server_extract_session( struct msg_command_data *, char *, char **); void server_write(struct client *, enum hdrtype, const void *, size_t); @@ -1302,7 +1297,12 @@ int server_unlock(const char *); /* status.c */ int status_redraw(struct client *); +void status_message_set(struct client *, const char *); +void status_message_clear(struct client *); int status_message_redraw(struct client *); +void status_prompt_set(struct client *, + const char *, int (*)(void *, const char *), void *, int); +void status_prompt_clear(struct client *); int status_prompt_redraw(struct client *); void status_prompt_key(struct client *, int); -- cgit