| SilcUInt64
 
 NAME
 
    typedef unsigned long long SilcUInt64;
DESCRIPTION
    64-bit unsigned integer.  Guaranteed to be 64-bits on systems that
    support it.
SOURCE    #if SILC_SIZEOF_LONG >= 8
    typedef unsigned long SilcUInt64;
    typedef signed long SilcInt64;
    #else
    #if SILC_SIZEOF_LONG_LONG >= 8
    #ifndef WIN32
    typedef unsigned long long SilcUInt64;
    typedef signed long long SilcInt64;
    #else
    typedef unsigned __int64 SilcUInt64;
    typedef signed __int64 SilcInt64;
    #endif
    #else
    typedef SilcUInt32 SilcUInt64;
    typedef SilcInt32 SilcInt64;
    #endif
    #endif
 
 
 
 |