Previous 199869 Revisions Next

r32891 Thursday 23rd October, 2014 at 06:39:28 UTC by Miodrag Milanović
Fix compile on official tools (nw)
[src/lib/winpcap]bittypes.h pcap-stdinc.h

trunk/src/lib/winpcap/bittypes.h
r241402r241403
6969#if SIZEOF_INT == 4
7070typedef unsigned int u_int32_t;
7171typedef signed int int32_t;
72#elif SIZEOF_LONG == 4
72#elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 4)
7373typedef unsigned long u_int32_t;
7474typedef signed long int32_t;
7575#elif SIZEOF_SHORT == 4
r241402r241403
9292typedef _int64 int64_t;
9393#elif SIZEOF_INT == 8
9494typedef unsigned int u_int64_t;
95#elif SIZEOF_LONG == 8
95#elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 8)
9696typedef unsigned long u_int64_t;
9797#elif SIZEOF_SHORT == 8
9898typedef unsigned short u_int64_t;
trunk/src/lib/winpcap/pcap-stdinc.h
r241402r241403
6060
6161#define caddr_t char*
6262
63#if _MSC_VER < 1500
63#if defined(_MSC_VER) && (__MSC_VER < 1500)
6464#define snprintf _snprintf
6565#define vsnprintf _vsnprintf
6666#define strdup _strdup
6767#endif
6868
69#if _MSC_VER < 1700
69#if defined(_MSC_VER) && (__MSC_VER < 1700)
7070#define inline __inline
7171#endif
7272


Previous 199869 Revisions Next


© 1997-2024 The MAME Team