mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Move the poll registration functions into the server-*.c files.
This commit is contained in:
4
tmux.h
4
tmux.h
@ -1574,18 +1574,22 @@ const char *key_string_lookup_key(int);
|
||||
extern struct clients clients;
|
||||
extern struct clients dead_clients;
|
||||
int server_start(char *);
|
||||
void server_poll_add(int, int, void (*)(int, int, void *), void *);
|
||||
|
||||
/* server-client.c */
|
||||
void server_client_create(int);
|
||||
void server_client_lost(struct client *);
|
||||
void server_client_prepare(void);
|
||||
void server_client_callback(int, int, void *);
|
||||
void server_client_loop(void);
|
||||
|
||||
/* server-job.c */
|
||||
void server_job_prepare(void);
|
||||
void server_job_callback(int, int, void *);
|
||||
void server_job_loop(void);
|
||||
|
||||
/* server-window.c */
|
||||
void server_window_prepare(void);
|
||||
void server_window_callback(int, int, void *);
|
||||
void server_window_loop(void);
|
||||
|
||||
|
Reference in New Issue
Block a user