Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
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
GSoC
GSoC2018
macOS
vlc
Commits
09b208c2
Commit
09b208c2
authored
Nov 16, 2016
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua: privatize intf_sys_t
parent
683a93d9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
11 deletions
+10
-11
modules/lua/intf.c
modules/lua/intf.c
+10
-0
modules/lua/vlc.h
modules/lua/vlc.h
+0
-11
No files found.
modules/lua/intf.c
View file @
09b208c2
...
...
@@ -46,6 +46,16 @@ static void *Run( void * );
static
const
char
*
const
ppsz_intf_options
[]
=
{
"intf"
,
"config"
,
NULL
};
/*****************************************************************************
* Local structures
*****************************************************************************/
struct
intf_sys_t
{
char
*
psz_filename
;
lua_State
*
L
;
vlc_thread_t
thread
;
vlclua_dtable_t
dtable
;
};
/*****************************************************************************
*
*****************************************************************************/
...
...
modules/lua/vlc.h
View file @
09b208c2
...
...
@@ -204,16 +204,5 @@ void vlclua_fd_interrupt( vlclua_dtable_t * );
void
vlclua_fd_cleanup
(
vlclua_dtable_t
*
);
struct
vlc_interrupt
*
vlclua_set_interrupt
(
lua_State
*
L
);
/**
* Per-interface private state
*/
struct
intf_sys_t
{
char
*
psz_filename
;
lua_State
*
L
;
vlc_thread_t
thread
;
vlclua_dtable_t
dtable
;
};
#endif
/* VLC_LUA_H */
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