]> git.sesse.net Git - vlc/blobdiff - modules/misc/lua/vlc.h
demux: provide both URL and file path as with access
[vlc] / modules / misc / lua / vlc.h
index e6e13d2ca82be2aabf313413ec67084cb49c2f69..71dfcc78114fb0d9f7d188f61b83def3c6e45e31 100644 (file)
@@ -91,8 +91,13 @@ static inline const char *luaL_nilorcheckstring( lua_State *L, int narg )
     return luaL_checkstring( L, narg );
 }
 
+void vlclua_set_this( lua_State *, vlc_object_t * );
+#define vlclua_set_this(a, b) vlclua_set_this(a, VLC_OBJECT(b))
 vlc_object_t * vlclua_get_this( lua_State * );
 
+struct intf_sys_t;
+void vlclua_set_intf( lua_State *, struct intf_sys_t * );
+
 /*****************************************************************************
  * Lua function bridge
  *****************************************************************************/