2009-09-16 10:20:25 +02:00
|
|
|
#ifndef __MSVC__HEAD
|
|
|
|
#define __MSVC__HEAD
|
|
|
|
|
|
|
|
#include <direct.h>
|
|
|
|
#include <process.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
|
|
|
/* porting function */
|
|
|
|
#define inline __inline
|
|
|
|
#define __inline__ __inline
|
|
|
|
#define __attribute__(x)
|
|
|
|
#define va_copy(dst, src) ((dst) = (src))
|
2009-09-16 10:20:27 +02:00
|
|
|
#define strncasecmp _strnicmp
|
|
|
|
#define ftruncate _chsize
|
2009-09-16 10:20:25 +02:00
|
|
|
|
|
|
|
static __inline int strcasecmp (const char *s1, const char *s2)
|
|
|
|
{
|
|
|
|
int size1 = strlen(s1);
|
|
|
|
int sisz2 = strlen(s2);
|
|
|
|
return _strnicmp(s1, s2, sisz2 > size1 ? sisz2 : size1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef ERROR
|
2010-01-15 21:12:19 +01:00
|
|
|
|
|
|
|
/* Use mingw_lstat() instead of lstat()/stat() and mingw_fstat() instead
|
|
|
|
* of fstat(). We add the declaration of these functions here, suppressing
|
|
|
|
* the corresponding declarations in mingw.h, so that we can use the
|
|
|
|
* appropriate structure type (and function) names from the msvc headers.
|
|
|
|
*/
|
|
|
|
#define stat _stat64
|
|
|
|
int mingw_lstat(const char *file_name, struct stat *buf);
|
|
|
|
int mingw_fstat(int fd, struct stat *buf);
|
|
|
|
#define fstat mingw_fstat
|
|
|
|
#define lstat mingw_lstat
|
2009-09-16 10:20:25 +02:00
|
|
|
#define _stat64(x,y) mingw_lstat(x,y)
|
2010-01-15 21:12:19 +01:00
|
|
|
#define ALREADY_DECLARED_STAT_FUNCS
|
|
|
|
|
|
|
|
#include "compat/mingw.h"
|
|
|
|
|
|
|
|
#undef ALREADY_DECLARED_STAT_FUNCS
|
2009-09-16 10:20:25 +02:00
|
|
|
|
|
|
|
#endif
|