]> git.sesse.net Git - vlc/blobdiff - modules/misc/lua/vlc.h
LUA: avoid leading underscores
[vlc] / modules / misc / lua / vlc.h
index 20b19fd500779f375ddbc875167c8f0f25c584e2..0669c2db0dc52bc31fb1820b850e9abd4ba1c33e 100644 (file)
@@ -91,8 +91,8 @@ static inline const char *luaL_nilorcheckstring( lua_State *L, int narg )
     return luaL_checkstring( L, narg );
 }
 
-#define vlclua_set_this(a, b) __vlclua_set_this(a, VLC_OBJECT(b))
-void __vlclua_set_this( lua_State *, vlc_object_t * );
+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 * );
 
 /*****************************************************************************