mirror of https://github.com/mpv-player/mpv
MINGW32 port
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9929 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a8108b443e
commit
08c1d138dc
|
@ -21,6 +21,9 @@
|
|||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#ifdef __MINGW32__
|
||||
typedef long ssize_t;
|
||||
#endif
|
||||
|
||||
/**
|
||||
* The length of one Logical Block of a DVD Video.
|
||||
|
|
|
@ -31,7 +31,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
//#include <assert.h>
|
||||
#ifndef __MINGW32__
|
||||
#include <sys/ioctl.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
|
|
Loading…
Reference in New Issue