Commit 52fbb24b authored by Philippe Morin's avatar Philippe Morin

Fix include for WIN32 version.

parent 116f3a23
...@@ -30,7 +30,12 @@ ...@@ -30,7 +30,12 @@
#include <stdio.h> // for printf #include <stdio.h> // for printf
#include <stdlib.h> // for calloc #include <stdlib.h> // for calloc
#include <string.h> // for strcmp #include <string.h> // for strcmp
#ifdef WIN32
#undef usleep
#define usleep(var) Sleep(var/1000)
#else
#include <unistd.h> // for usleep #include <unistd.h> // for usleep
#endif
/* JVLC internal imports, generated by gcjh */ /* JVLC internal imports, generated by gcjh */
#include "../includes/JVLC.h" #include "../includes/JVLC.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment