1/* clientserver.c */ 2void server_to_input_buf(char_u *str); 3char_u *eval_client_expr_to_string(char_u *expr); 4int sendToLocalVim(char_u *cmd, int asExpr, char_u **result); 5char_u *serverConvert(char_u *client_enc, char_u *data, char_u **tofree); 6void exec_on_server(mparm_T *parmp); 7void prepare_server(mparm_T *parmp); 8void f_remote_expr(typval_T *argvars, typval_T *rettv); 9void f_remote_foreground(typval_T *argvars, typval_T *rettv); 10void f_remote_peek(typval_T *argvars, typval_T *rettv); 11void f_remote_read(typval_T *argvars, typval_T *rettv); 12void f_remote_send(typval_T *argvars, typval_T *rettv); 13void f_remote_startserver(typval_T *argvars, typval_T *rettv); 14void f_server2client(typval_T *argvars, typval_T *rettv); 15void f_serverlist(typval_T *argvars, typval_T *rettv); 16/* vim: set ft=c : */ 17