2010-07-18 18:04:50 +02:00
|
|
|
/* if_python3.c */
|
2010-07-17 21:19:38 +02:00
|
|
|
int python3_enabled __ARGS((int verbose));
|
|
|
|
void python3_end __ARGS((void));
|
2010-07-24 15:42:14 +02:00
|
|
|
int python3_loaded __ARGS((void));
|
2010-07-19 20:46:22 +02:00
|
|
|
void ex_py3 __ARGS((exarg_T *eap));
|
2010-07-17 21:19:38 +02:00
|
|
|
void ex_py3file __ARGS((exarg_T *eap));
|
2013-07-03 18:49:17 +02:00
|
|
|
void ex_py3do __ARGS((exarg_T *eap));
|
2010-07-17 21:19:38 +02:00
|
|
|
void python3_buffer_free __ARGS((buf_T *buf));
|
|
|
|
void python3_window_free __ARGS((win_T *win));
|
2013-05-15 15:12:29 +02:00
|
|
|
void python3_tabpage_free __ARGS((tabpage_T *tab));
|
2012-06-29 12:54:53 +02:00
|
|
|
void do_py3eval __ARGS((char_u *str, typval_T *rettv));
|
2015-02-03 12:55:18 +01:00
|
|
|
int set_ref_in_python3 __ARGS((int copyID));
|
2010-07-17 21:19:38 +02:00
|
|
|
/* vim: set ft=c : */
|