Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 1 | /* clientserver.c */ |
| 2 | void server_to_input_buf(char_u *str); |
| 3 | char_u *eval_client_expr_to_string(char_u *expr); |
| 4 | int sendToLocalVim(char_u *cmd, int asExpr, char_u **result); |
| 5 | char_u *serverConvert(char_u *client_enc, char_u *data, char_u **tofree); |
| 6 | void exec_on_server(mparm_T *parmp); |
| 7 | void prepare_server(mparm_T *parmp); |
| 8 | void f_remote_expr(typval_T *argvars, typval_T *rettv); |
| 9 | void f_remote_foreground(typval_T *argvars, typval_T *rettv); |
| 10 | void f_remote_peek(typval_T *argvars, typval_T *rettv); |
| 11 | void f_remote_read(typval_T *argvars, typval_T *rettv); |
| 12 | void f_remote_send(typval_T *argvars, typval_T *rettv); |
| 13 | void f_remote_startserver(typval_T *argvars, typval_T *rettv); |
| 14 | void f_server2client(typval_T *argvars, typval_T *rettv); |
| 15 | void f_serverlist(typval_T *argvars, typval_T *rettv); |
| 16 | /* vim: set ft=c : */ |