Copy a specified number of bytes from one memory location to another.
void* hfzMemcpy(void* pDest, const void* pSrc, long nBytes);
| 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. |
pDest is returned.
None.