mirror of
https://github.com/moparisthebest/hexchat
synced 2025-01-10 05:28:07 -05:00
ea0d3059f4
Shouldn't need to go any higher, level 4+ gives insane warnings
26 lines
332 B
C
26 lines
332 B
C
#ifndef HEXCHAT_TYPEDEF_H
|
|
#define HEXCHAT_TYPEDEF_H
|
|
|
|
#ifdef WIN32
|
|
|
|
#ifndef SSIZE_T_DEFINED
|
|
#ifdef ssize_t
|
|
#undef ssize_t
|
|
#endif
|
|
#ifdef _WIN64
|
|
typedef __int64 ssize_t;
|
|
#else
|
|
typedef _W64 int ssize_t;
|
|
#endif
|
|
#define SSIZE_T_DEFINED
|
|
#endif
|
|
|
|
#ifndef fstat
|
|
#define fstat _fstat
|
|
#define stat _stat
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|