The Storm - 2015-02-16

Hello,

I recently wanted to view out the good old HL stuff and I see now obsolete check in eiface.h.

// Fixed MSVC compiling, by Nikolay "The Storm" Baklicharov.
#if defined _MSC_VER && _MSC_VER >= 1400
    #ifndef ARRAYSIZE
        #define ARRAYSIZE(p)        (sizeof(p)/sizeof(p[0]))
    #endif
#else /* MSVC 8.0 */
    #ifndef ARRAYSIZE
        #define ARRAYSIZE(p)        (sizeof(p)/sizeof(p[0]))
    #endif
#endif

Yes, this fix originated from me long time ago but in it's current state it seems obsolete, because the check for ARRAYSIZE is now the same also for GCC. :)