Mercurial > vim
view src/proto/if_mzsch.pro @ 8041:c6443e78cf2d v7.4.1315
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 13 23:23:53 2016 +0100
patch 7.4.1315
Problem: Using a channel handle does not allow for freeing it when unused.
Solution: Add the Channel variable type.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 13 Feb 2016 23:30:05 +0100 |
parents | 744c66477ba9 |
children | 4cb5ab124239 |
line wrap: on
line source
/* if_mzsch.c */ int mzscheme_enabled(int verbose); void mzvim_check_threads(void); void mzvim_reset_timer(void); void mzscheme_end(void); int mzscheme_main(int argc, char **argv); void mzscheme_buffer_free(buf_T *buf); void mzscheme_window_free(win_T *win); void ex_mzscheme(exarg_T *eap); void ex_mzfile(exarg_T *eap); void do_mzeval(char_u *str, typval_T *rettv); void raise_vim_exn(const char *add_info); void raise_if_error(void); buf_T *get_valid_buffer(void *obj); win_T *get_valid_window(void *obj); int mzthreads_allowed(void); /* vim: set ft=c : */