Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
2dc214fb
Commit
2dc214fb
authored
Jun 20, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lua: remove write-only set_intf()
parent
4a1143be
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
9 deletions
+0
-9
modules/lua/intf.c
modules/lua/intf.c
+0
-1
modules/lua/libs/misc.c
modules/lua/libs/misc.c
+0
-5
modules/lua/vlc.h
modules/lua/vlc.h
+0
-3
No files found.
modules/lua/intf.c
View file @
2dc214fb
...
...
@@ -238,7 +238,6 @@ static int Start_LuaIntf( vlc_object_t *p_this, const char *name )
}
vlclua_set_this
(
L
,
p_intf
);
vlclua_set_intf
(
L
,
p_sys
);
luaL_openlibs
(
L
);
...
...
modules/lua/libs/misc.c
View file @
2dc214fb
...
...
@@ -73,11 +73,6 @@ vlc_object_t * vlclua_get_this( lua_State *L )
return
vlclua_get_object
(
L
,
vlclua_set_this
);
}
void
vlclua_set_intf
(
lua_State
*
L
,
intf_sys_t
*
p_intf
)
{
vlclua_set_object
(
L
,
vlclua_set_intf
,
p_intf
);
}
/*****************************************************************************
* VLC error code translation
*****************************************************************************/
...
...
modules/lua/vlc.h
View file @
2dc214fb
...
...
@@ -113,9 +113,6 @@ 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
*****************************************************************************/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment