aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/tmux.h b/tmux.h
index bdebf248..96b4e397 100644
--- a/tmux.h
+++ b/tmux.h
@@ -509,13 +509,10 @@ struct msg_command {
struct msg_read_open {
int stream;
int fd;
- char path[PATH_MAX];
-};
+}; /* followed by path */
struct msg_read_data {
int stream;
- size_t size;
- char data[BUFSIZ];
};
struct msg_read_done {
@@ -526,15 +523,12 @@ struct msg_read_done {
struct msg_write_open {
int stream;
int fd;
- char path[PATH_MAX];
int flags;
-};
+}; /* followed by path */
struct msg_write_data {
int stream;
- size_t size;
- char data[BUFSIZ];
-};
+}; /* followed by data */
struct msg_write_ready {
int stream;
@@ -2236,7 +2230,6 @@ void server_client_push_stdout(struct client *);
void server_client_push_stderr(struct client *);
void printflike(2, 3) server_client_add_message(struct client *, const char *,
...);
-char *server_client_get_path(struct client *, const char *);
const char *server_client_get_cwd(struct client *, struct session *);
/* server-fn.c */