mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
787be573ca
git-svn-id: https://svn.xiph.org/trunk/ezstream@15792 0101bb08-14d6-0310-b084-bc0e0c8e3800
35 lines
700 B
C
35 lines
700 B
C
#ifndef __WIN32_COMPAT_H__
|
|
#define __WIN32_COMPAT_H__
|
|
|
|
/* #define WIN32_LEAN_AND_MEAN */
|
|
#include <io.h>
|
|
#include <process.h>
|
|
#include <winsock2.h>
|
|
#include <windows.h>
|
|
|
|
#define inline __inline
|
|
|
|
#define popen _popen
|
|
#define pclose _pclose
|
|
#define snprintf _snprintf
|
|
#define strncasecmp strnicmp
|
|
#define stat _stat
|
|
|
|
#define sleep(a) Sleep((a) * 1000)
|
|
|
|
#define va_copy(dst, src) memcpy(&(dst), &(src), sizeof(va_list))
|
|
|
|
#define S_IRGRP 0
|
|
#define S_IROTH 0
|
|
#define S_IWGRP 0
|
|
#define S_IWOTH 0
|
|
#define S_IXGRP 0
|
|
#define S_IXOTH 0
|
|
#define PATH_SEPARATOR '\\'
|
|
#define _PATH_DEVNULL "nul"
|
|
|
|
#ifndef ssize_t
|
|
# define ssize_t long
|
|
#endif /* !ssize_t */
|
|
|
|
#endif /* __WIN32_COMPAT_H__ */ |