blob: 8d0489c1f79fcb2597d21fed7fdc08d9997fa19d [file] [log] [blame]
Bram Moolenaar6df6f472010-07-18 18:04:50 +02001/* if_python3.c */
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02002int python3_enabled __ARGS((int verbose));
3void python3_end __ARGS((void));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +02004int python3_loaded __ARGS((void));
Bram Moolenaar368373e2010-07-19 20:46:22 +02005void ex_py3 __ARGS((exarg_T *eap));
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02006void ex_py3file __ARGS((exarg_T *eap));
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +02007void ex_py3do __ARGS((exarg_T *eap));
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02008void python3_buffer_free __ARGS((buf_T *buf));
9void python3_window_free __ARGS((win_T *win));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +020010void python3_tabpage_free __ARGS((tabpage_T *tab));
Bram Moolenaardb913952012-06-29 12:54:53 +020011void do_py3eval __ARGS((char_u *str, typval_T *rettv));
Bram Moolenaar2459a5e2015-02-03 12:55:18 +010012int set_ref_in_python3 __ARGS((int copyID));
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020013/* vim: set ft=c : */