Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 36 of file byteswap.c.
{ #if defined(_M_AMD64) return _byteswap_ushort(Source); #else return (Source >> 8) | (Source << 8); #endif }