summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-14 23:23:17 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-14 23:23:17 +0200
commit0ba042961f929ff43f977c2ebdba9368f42d9c52 (patch)
tree59220f91eb954e7400bf8846ae8010dd22532029 /src/proto
parent26dcc7e8df8f0f1852752b9107ba4b0408061554 (diff)
downloadvim-git-0ba042961f929ff43f977c2ebdba9368f42d9c52.tar.gz
Added Lua interfae. (Luis Carvalho)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/if_lua.pro8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/proto/if_lua.pro b/src/proto/if_lua.pro
new file mode 100644
index 000000000..fb80ae02d
--- /dev/null
+++ b/src/proto/if_lua.pro
@@ -0,0 +1,8 @@
+/* if_lua.c */
+void lua_end __ARGS((void));
+void ex_lua __ARGS((exarg_T *eap));
+void ex_luado __ARGS((exarg_T *eap));
+void ex_luafile __ARGS((exarg_T *eap));
+void lua_buffer_free __ARGS((buf_T *buf));
+void lua_window_free __ARGS((win_T *win));
+/* vim: set ft=c : */