| SilcUInt32
 
 NAME
 
    typedef unsigned long SilcUInt32;
DESCRIPTION
    32-bit unsigned integer.  Guaranteed to be 32-bits.
SOURCE    #if SILC_SIZEOF_INT == 4
    typedef unsigned int SilcUInt32;
    typedef signed int SilcInt32;
    #else
    #if SILC_SIZEOF_LONG == 4
    typedef unsigned long SilcUInt32;
    typedef signed long SilcInt32;
    #else
    #if SILC_SIZEOF_LONG_LONG >= 4
    #ifndef WIN32
    typedef unsigned long long SilcUInt32;
    typedef signed long long SilcInt32;
    #endif
    #endif
    #endif
    #endif
 
 
 
 |