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 |
r241402 | r241403 | |
---|---|---|
69 | 69 | #if SIZEOF_INT == 4 |
70 | 70 | typedef unsigned int u_int32_t; |
71 | 71 | typedef signed int int32_t; |
72 | #elif SIZEOF_LONG == 4 | |
72 | #elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 4) | |
73 | 73 | typedef unsigned long u_int32_t; |
74 | 74 | typedef signed long int32_t; |
75 | 75 | #elif SIZEOF_SHORT == 4 |
r241402 | r241403 | |
92 | 92 | typedef _int64 int64_t; |
93 | 93 | #elif SIZEOF_INT == 8 |
94 | 94 | typedef unsigned int u_int64_t; |
95 | #elif SIZEOF_LONG == 8 | |
95 | #elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 8) | |
96 | 96 | typedef unsigned long u_int64_t; |
97 | 97 | #elif SIZEOF_SHORT == 8 |
98 | 98 | typedef unsigned short u_int64_t; |
r241402 | r241403 | |
---|---|---|
60 | 60 | |
61 | 61 | #define caddr_t char* |
62 | 62 | |
63 | #if _MSC_VER < 1500 | |
63 | #if defined(_MSC_VER) && (__MSC_VER < 1500) | |
64 | 64 | #define snprintf _snprintf |
65 | 65 | #define vsnprintf _vsnprintf |
66 | 66 | #define strdup _strdup |
67 | 67 | #endif |
68 | 68 | |
69 | #if _MSC_VER < 1700 | |
69 | #if defined(_MSC_VER) && (__MSC_VER < 1700) | |
70 | 70 | #define inline __inline |
71 | 71 | #endif |
72 | 72 |
https://github.com/mamedev/mame/commit/b733e0312c4c75b3b023655c8a607c580c85a5a3 |
Previous | 199869 Revisions | Next |