Changeset 1911

Show
Ignore:
Timestamp:
01/03/01 11:18:07 (8 years ago)
Author:
warmerda
Message:

added GUIntBig

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/port/cpl_port.h

    r1781 r1911  
    3939 * 
    4040 * $Log$ 
     41 * Revision 1.22  2001/01/03 16:18:07  warmerda 
     42 * added GUIntBig 
     43 * 
    4144 * Revision 1.21  2000/10/20 04:20:33  warmerda 
    4245 * added SWAP16PTR macros 
     
    178181typedef int             GBool; 
    179182 
     183/* -------------------------------------------------------------------- */ 
     184/*      64bit support                                                   */ 
     185/* -------------------------------------------------------------------- */ 
     186 
     187#ifdef WIN32 
     188 
     189#define VSI_LARGE_API_SUPPORTED 
     190typedef __int64          GIntBig; 
     191typedef unsigned __int64 GUIntBig; 
     192 
     193#else 
     194 
     195typedef long             GIntBig; 
     196typedef unsigned long    GUIntBig; 
     197 
     198#endif 
    180199 
    181200/* ==================================================================== */