1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

fix debug compilation on mingw

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10826 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-09-06 13:36:15 +00:00
parent 04b4ce875b
commit 6219ca26e0

View File

@ -45,6 +45,16 @@
#include <mntent.h>
#endif
#ifdef __MINGW32__
#include <sys/timeb.h>
static void gettimeofday(struct timeval* t,void* timezone){
struct timeb timebuffer;
ftime( &timebuffer );
t->tv_sec=timebuffer.time;
t->tv_usec=1000*timebuffer.millitm;
}
#endif
#include "dvd_udf.h"
#include "dvd_input.h"
#include "dvd_reader.h"