====== hfzMemcpy ====== ===== Description ===== Copy a specified number of bytes from one memory location to another. ===== Function prototype ===== void* hfzMemcpy(void* pDest, const void* pSrc, long nBytes); ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | pDest | void* | A pointer to the destination array. | | pSrc | void* | A pointer to the source array. | | nBytes | long | The number of bytes to be copied from source to destination. | ===== Return value ===== //pDest// is returned. ===== Comments ===== None.