]> git.sesse.net Git - vlc/blobdiff - modules/lua/libs.h
Lua: remap file descriptors in Lua and GC at exit (fixes #8898)
[vlc] / modules / lua / libs.h
index d67a672caa93104bb536fced88b082e3068abda4..a86a7a019d2ef762a57057edd736f325ea35d3d7 100644 (file)
@@ -24,7 +24,6 @@
 #ifndef VLC_LUA_LIBS_H
 #define VLC_LUA_LIBS_H
 
-void luaopen_acl( lua_State * );
 void luaopen_config( lua_State * );
 void luaopen_dialog( lua_State *, void * );
 void luaopen_httpd( lua_State * );
@@ -46,5 +45,8 @@ void luaopen_gettext( lua_State * );
 void luaopen_input_item( lua_State *L, input_item_t *item );
 void luaopen_xml( lua_State *L );
 void luaopen_equalizer( lua_State *L );
+#ifdef _WIN32
+void luaopen_win( lua_State *L );
+#endif
 
 #endif