summaryrefslogtreecommitdiffstats
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-17 21:19:38 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-17 21:19:38 +0200
commitbd5e15fd5c7e42505d6b0e20f4198d24fc7e219d (patch)
tree70e3f86ae76494fc094bbe25c58ba2befbcf4872 /src/proto
parent02c707a87da1b0f78d10a689cc03941a2e8acbc6 (diff)
Added support for Python 3. (Roland Puntaier)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/if_python3.pro8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/proto/if_python3.pro b/src/proto/if_python3.pro
new file mode 100644
index 0000000000..cca043092e
--- /dev/null
+++ b/src/proto/if_python3.pro
@@ -0,0 +1,8 @@
+/* if_python.c */
+int python3_enabled __ARGS((int verbose));
+void python3_end __ARGS((void));
+void ex_python3 __ARGS((exarg_T *eap));
+void ex_py3file __ARGS((exarg_T *eap));
+void python3_buffer_free __ARGS((buf_T *buf));
+void python3_window_free __ARGS((win_T *win));
+/* vim: set ft=c : */