Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
0669643b
Commit
0669643b
authored
May 08, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_modules_macros.h -> vlc_plugin.h
parent
63007605
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
424 additions
and
443 deletions
+424
-443
include/vlc_common.h
include/vlc_common.h
+1
-1
include/vlc_modules_macros.h
include/vlc_modules_macros.h
+0
-431
include/vlc_plugin.h
include/vlc_plugin.h
+412
-7
src/Makefile.am
src/Makefile.am
+4
-3
src/libvlc-module.c
src/libvlc-module.c
+1
-0
src/modules/entry.c
src/modules/entry.c
+1
-0
src/modules/modules.c
src/modules/modules.c
+1
-0
src/modules/os.c
src/modules/os.c
+3
-0
vlc-config.in.in
vlc-config.in.in
+1
-1
No files found.
include/vlc_common.h
View file @
0669643b
...
...
@@ -430,7 +430,7 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
# endif
#endif
#include
"vlc_modules_macros.h"
#include
<vlc_plugin.h>
/*****************************************************************************
* OS-specific headers and thread types
...
...
include/vlc_modules_macros.h
deleted
100644 → 0
View file @
63007605
This diff is collapsed.
Click to expand it.
include/vlc_plugin.h
View file @
0669643b
This diff is collapsed.
Click to expand it.
src/Makefile.am
View file @
0669643b
...
...
@@ -43,9 +43,9 @@ pluginsinclude_HEADERS = \
../include/vlc_main.h
\
../include/vlc_messages.h
\
../include/vlc_modules.h
\
../include/vlc_modules_macros.h
\
../include/vlc_mtime.h
\
../include/vlc_objects.h
\
../include/vlc_plugin.h
\
../include/vlc_threads.h
\
../include/vlc_threads_funcs.h
\
../include/vlc_variables.h
\
...
...
@@ -86,7 +86,6 @@ noinst_HEADERS = \
../include/vlc_osd.h
\
../include/vlc_pgpkey.h
\
../include/vlc_playlist.h
\
../include/vlc_plugin.h
\
../include/vlc_rand.h
\
../include/vlc_services_discovery.h
\
../include/vlc_sout.h
\
...
...
@@ -171,6 +170,7 @@ endif
libvlc_la_SOURCES
=
$(SOURCES_libvlc)
nodist_libvlc_la_SOURCES
=
misc/revision.c
libvlc_la_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
libvlc
`
\
-DMODULE_STRING
=
\"
main
\"
\
-DLOCALEDIR
=
\"
$(localedir)
\"
\
-DSYSCONFDIR
=
\"
$(sysconfdir)
\"
\
-DDATA_PATH
=
\"
$(pkgdatadir)
\"
\
...
...
@@ -190,7 +190,8 @@ libvlc_la_DEPENDENCIES = libvlc.sym
libvlc_control_la_SOURCES
=
$(SOURCES_libvlc_control)
libvlc_control_la_LIBADD
=
libvlc.la
libvlc_control_la_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
libvlc
`
libvlc_control_la_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
libvlc
`
\
-DMODULE_STRING
=
\"
control
\"
libvlc_control_la_LDFLAGS
=
$(AM_LDFLAGS)
-version-info
1:0:0
if
HAVE_COMPILER_EXPORT
libvlc_control_la_LDFLAGS
+=
-export-dynamic
...
...
src/libvlc-module.c
View file @
0669643b
...
...
@@ -35,6 +35,7 @@
#endif
#include <vlc/vlc.h>
#include <vlc_plugin.h>
#include "libvlc.h"
//#define Nothing here, this is just to prevent update-po from being stupid
...
...
src/modules/entry.c
View file @
0669643b
...
...
@@ -24,6 +24,7 @@
#endif
#include <vlc/vlc.h>
#include <vlc_plugin.h>
#include <assert.h>
#include <stdarg.h>
...
...
src/modules/modules.c
View file @
0669643b
...
...
@@ -29,6 +29,7 @@
#endif
#include <vlc/vlc.h>
#include <vlc_plugin.h>
#include "libvlc.h"
/* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
...
...
src/modules/os.c
View file @
0669643b
...
...
@@ -29,6 +29,7 @@
#endif
#include <vlc/vlc.h>
#include <vlc_plugin.h>
/* MODULE_SUFFIX */
#include "libvlc.h"
#include "modules.h"
...
...
@@ -259,6 +260,8 @@ void module_Unload( module_handle_t handle )
#elif defined(HAVE_DL_DLOPEN)
# ifdef NDEBUG
dlclose
(
handle
);
# else
(
void
)
handle
;
# endif
#elif defined(HAVE_DL_SHL_LOAD)
...
...
vlc-config.in.in
View file @
0669643b
...
...
@@ -247,7 +247,7 @@ done
# If a module was requested, use its name
#
if
test
-n
"
${
module
}
"
;
then
cppflags
=
"
${
cppflags
}
-DMODULE_NAME=
${
module
}
-DMODULE_NAME_IS_
${
module
}
"
cppflags
=
"
${
cppflags
}
-DMODULE_NAME=
${
module
}
-DMODULE_NAME_IS_
${
module
}
-DMODULE_STRING=
\"
${
module
}
\"
"
fi
#
...
...
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