Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
52fbb24b
Commit
52fbb24b
authored
Dec 17, 2006
by
Philippe Morin
Browse files
Fix include for WIN32 version.
parent
116f3a23
Changes
1
Hide whitespace changes
Inline
Side-by-side
bindings/java/src/core-jni.cc
View file @
52fbb24b
...
...
@@ -30,7 +30,12 @@
#include
<stdio.h>
// for printf
#include
<stdlib.h>
// for calloc
#include
<string.h>
// for strcmp
#ifdef WIN32
#undef usleep
#define usleep(var) Sleep(var/1000)
#else
#include
<unistd.h>
// for usleep
#endif
/* JVLC internal imports, generated by gcjh */
#include
"../includes/JVLC.h"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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