Changeset 1911
- Timestamp:
- 01/03/01 11:18:07 (8 years ago)
- Files:
-
- trunk/port/cpl_port.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/port/cpl_port.h
r1781 r1911 39 39 * 40 40 * $Log$ 41 * Revision 1.22 2001/01/03 16:18:07 warmerda 42 * added GUIntBig 43 * 41 44 * Revision 1.21 2000/10/20 04:20:33 warmerda 42 45 * added SWAP16PTR macros … … 178 181 typedef int GBool; 179 182 183 /* -------------------------------------------------------------------- */ 184 /* 64bit support */ 185 /* -------------------------------------------------------------------- */ 186 187 #ifdef WIN32 188 189 #define VSI_LARGE_API_SUPPORTED 190 typedef __int64 GIntBig; 191 typedef unsigned __int64 GUIntBig; 192 193 #else 194 195 typedef long GIntBig; 196 typedef unsigned long GUIntBig; 197 198 #endif 180 199 181 200 /* ==================================================================== */
