Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
83f1c944
Commit
83f1c944
authored
Nov 10, 2009
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extensions: buildsystem
Let's compile!
parent
1bbf6f1c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
1 deletion
+13
-1
modules/misc/lua/Modules.am
modules/misc/lua/Modules.am
+3
-0
modules/misc/lua/libs.h
modules/misc/lua/libs.h
+1
-1
modules/misc/lua/vlc.c
modules/misc/lua/vlc.c
+6
-0
modules/misc/lua/vlc.h
modules/misc/lua/vlc.h
+3
-0
No files found.
modules/misc/lua/Modules.am
View file @
83f1c944
SOURCES_lua = \
extension.c \
extension_thread.c \
intf.c \
meta.c \
demux.c \
...
...
@@ -8,6 +10,7 @@ SOURCES_lua = \
libs/acl.c \
libs/configuration.c \
libs/gettext.c \
libs/dialog.c \
libs/httpd.c \
libs/input.c \
libs/input.h \
...
...
modules/misc/lua/libs.h
View file @
83f1c944
...
...
@@ -26,7 +26,7 @@
void
luaopen_acl
(
lua_State
*
);
void
luaopen_config
(
lua_State
*
);
void
luaopen_
volume
(
lua_State
*
);
void
luaopen_
dialog
(
lua_State
*
,
void
*
);
void
luaopen_httpd
(
lua_State
*
);
void
luaopen_input
(
lua_State
*
);
void
luaopen_msg
(
lua_State
*
);
...
...
modules/misc/lua/vlc.c
View file @
83f1c944
...
...
@@ -106,6 +106,12 @@ vlc_module_begin ()
add_string
(
"lua-config"
,
""
,
NULL
,
CONFIG_TEXT
,
CONFIG_LONGTEXT
,
false
)
set_callbacks
(
Open_LuaIntf
,
Close_LuaIntf
)
add_submodule
()
set_shortname
(
"Lua Extension"
)
add_shortcut
(
"luaextension"
)
set_capability
(
"extension"
,
1
)
set_callbacks
(
Open_Extension
,
Close_Extension
)
vlc_module_end
()
/*****************************************************************************
...
...
modules/misc/lua/vlc.h
View file @
83f1c944
...
...
@@ -54,6 +54,9 @@ void Close_LuaPlaylist( vlc_object_t * );
int
Open_LuaIntf
(
vlc_object_t
*
);
void
Close_LuaIntf
(
vlc_object_t
*
);
int
Open_Extension
(
vlc_object_t
*
);
void
Close_Extension
(
vlc_object_t
*
);
/*****************************************************************************
* Lua debug
...
...
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