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
908d0b93
Commit
908d0b93
authored
Aug 20, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: fix src/ compilation
parent
473c70d7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
src/extras/getopt.c
src/extras/getopt.c
+2
-0
src/misc/w32thread.c
src/misc/w32thread.c
+2
-0
src/misc/win32_specific.c
src/misc/win32_specific.c
+1
-0
No files found.
src/extras/getopt.c
View file @
908d0b93
...
...
@@ -359,6 +359,8 @@ static const char *
char
*
const
*
argv
;
const
char
*
optstring
;
{
(
void
)
argc
;
(
void
)
argv
;
/* Start processing options with ARGV-element 1 (since ARGV-element 0
is the program name); the sequence of previously skipped
non-option ARGV-elements is empty. */
...
...
src/misc/w32thread.c
View file @
908d0b93
...
...
@@ -373,6 +373,8 @@ void vlc_rwlock_unlock (vlc_rwlock_t *lock)
int
vlc_threadvar_create
(
vlc_threadvar_t
*
p_tls
,
void
(
*
destr
)
(
void
*
))
{
#warning FIXME: use destr() callback and stop leaking!
VLC_UNUSED
(
destr
);
*
p_tls
=
TlsAlloc
();
return
(
*
p_tls
==
TLS_OUT_OF_INDEXES
)
?
EAGAIN
:
0
;
}
...
...
src/misc/win32_specific.c
View file @
908d0b93
...
...
@@ -47,6 +47,7 @@
*****************************************************************************/
void
system_Init
(
libvlc_int_t
*
p_this
,
int
*
pi_argc
,
const
char
*
ppsz_argv
[]
)
{
VLC_UNUSED
(
p_this
);
VLC_UNUSED
(
pi_argc
);
VLC_UNUSED
(
ppsz_argv
);
WSADATA
Data
;
/* Get our full path */
...
...
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