Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
bfaade68
Commit
bfaade68
authored
May 20, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* add missing includes (trying to fix compilation errors in buildbot :D)
parent
1a0773f8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
1 deletion
+7
-1
src/misc/beos_specific.cpp
src/misc/beos_specific.cpp
+1
-0
src/misc/darwin_specific.c
src/misc/darwin_specific.c
+1
-0
src/misc/win32_specific.c
src/misc/win32_specific.c
+1
-0
src/modules/configuration.c
src/modules/configuration.c
+1
-0
src/modules/entry.c
src/modules/entry.c
+2
-1
src/modules/modules.c
src/modules/modules.c
+1
-0
No files found.
src/misc/beos_specific.cpp
View file @
bfaade68
...
...
@@ -34,6 +34,7 @@
extern
"C"
{
#include <vlc/vlc.h>
#include "../libvlc.h"
}
/*****************************************************************************
...
...
src/misc/darwin_specific.c
View file @
bfaade68
...
...
@@ -27,6 +27,7 @@
#include <dirent.h>
/* *dir() */
#include <vlc/vlc.h>
#include "../libvlc.h"
#include <CoreFoundation/CoreFoundation.h>
...
...
src/misc/win32_specific.c
View file @
bfaade68
...
...
@@ -25,6 +25,7 @@
#include <stdlib.h>
/* free() */
#include <vlc/vlc.h>
#include "../libvlc.h"
#include <vlc_playlist.h>
#include <vlc_charset.h>
...
...
src/modules/configuration.c
View file @
bfaade68
...
...
@@ -22,6 +22,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include "../libvlc.h"
#include "vlc_keys.h"
#include "vlc_charset.h"
...
...
src/modules/entry.c
View file @
bfaade68
...
...
@@ -23,6 +23,7 @@
#include "modules/modules.h"
#include "libvlc.h"
#include "../libvlc.h"
static
const
char
default_name
[]
=
"unnamed"
;
...
...
@@ -35,7 +36,7 @@ module_t *vlc_module_create (vlc_object_t *obj)
return
NULL
;
#ifndef HAVE_SHARED_LIBVLC
module
->
p_symbols
=
&
obj
->
p_libvlc_global
->
p_module_bank
->
symbols
;
module
->
p_symbols
=
&
vlc_global
(
obj
)
->
p_module_bank
->
symbols
;
#endif
module
->
b_reentrant
=
module
->
b_unloadable
=
VLC_TRUE
;
module
->
psz_object_name
=
module
->
psz_longname
=
default_name
;
...
...
src/modules/modules.c
View file @
bfaade68
...
...
@@ -25,6 +25,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include "../libvlc.h"
/* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
* is set to 64. Don't try to be cleverer. */
...
...
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