mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 12:55:16 +00:00
common: define some bits for Windows SDK
This commit is contained in:
parent
3ea684e7ef
commit
ed7fe505b4
@ -171,4 +171,25 @@ char **mp_dup_str_array(void *tctx, char **s);
|
||||
abort(); \
|
||||
} while (0)
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define strncasecmp _strnicmp
|
||||
#define strcasecmp _stricmp
|
||||
|
||||
#ifndef STDIN_FILENO
|
||||
#define STDIN_FILENO 0
|
||||
#endif
|
||||
#ifndef STDOUT_FILENO
|
||||
#define STDOUT_FILENO 1
|
||||
#endif
|
||||
#ifndef STDERR_FILENO
|
||||
#define STDERR_FILENO 2
|
||||
#endif
|
||||
#ifndef O_NONBLOCK
|
||||
#define O_NONBLOCK 0
|
||||
#endif
|
||||
|
||||
typedef long long ssize_t;
|
||||
typedef unsigned short mode_t;
|
||||
#endif
|
||||
|
||||
#endif /* MPLAYER_MPCOMMON_H */
|
||||
|
Loading…
Reference in New Issue
Block a user