comparison src/proto/channel.pro @ 7864:6b0891de44a9 v7.4.1229

commit https://github.com/vim/vim/commit/fb1f62691eae7c79a28b3b17a60e72ce198c71a2 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 31 20:24:32 2016 +0100 patch 7.4.1229 Problem: "eval" and "expr" channel commands don't work yet. Solution: Implement them. Update the error numbers. Also add "redraw".
author Christian Brabandt <cb@256bit.org>
date Sun, 31 Jan 2016 20:30:04 +0100
parents 28f569c7dab9
children 17e6ff1a74f1
comparison
equal deleted inserted replaced
7863:e18a688b2e3b 7864:6b0891de44a9
2 void channel_gui_register_all(void); 2 void channel_gui_register_all(void);
3 int channel_open(char *hostname, int port_in, void (*close_cb)(void)); 3 int channel_open(char *hostname, int port_in, void (*close_cb)(void));
4 void channel_set_json_mode(int idx, int json_mode); 4 void channel_set_json_mode(int idx, int json_mode);
5 void channel_set_callback(int idx, char_u *callback); 5 void channel_set_callback(int idx, char_u *callback);
6 void channel_set_req_callback(int idx, char_u *callback); 6 void channel_set_req_callback(int idx, char_u *callback);
7 int channel_decode_json(char_u *msg, typval_T *tv1, typval_T *tv2); 7 int channel_decode_json(char_u *msg, typval_T *tv1, typval_T *tv2, typval_T *tv3);
8 int channel_is_open(int idx); 8 int channel_is_open(int idx);
9 void channel_close(int idx); 9 void channel_close(int idx);
10 int channel_save(int idx, char_u *buf, int len); 10 int channel_save(int idx, char_u *buf, int len);
11 char_u *channel_peek(int idx); 11 char_u *channel_peek(int idx);
12 char_u *channel_get(int idx); 12 char_u *channel_get(int idx);