RtlMoveMemory(dst,src,count); }#else/*defined(_M_MRX000)||defined(_M_ALPHA)||defined(_M_PPC)*//*copy from lower addresses to higher addresses*/while(count--){*(char*)dst = *(char*)src; dst= (char*)dst+1; src= (char*)src+1; }#endif/*defined(_M_MRX000)||defined(_M_AL...