commit | 0ba042961f929ff43f977c2ebdba9368f42d9c52 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 14 23:23:17 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 14 23:23:17 2010 +0200 |
tree | 59220f91eb954e7400bf8846ae8010dd22532029 | |
parent | 26dcc7e8df8f0f1852752b9107ba4b0408061554 [diff] |
Added Lua interfae. (Luis Carvalho)
diff --git a/src/proto/if_lua.pro b/src/proto/if_lua.pro new file mode 100644 index 0000000..fb80ae0 --- /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 : */