hmemcpy

3.1

  void hmemcpy(hpvDest, hpvSource, cbCopy)    
  void _huge* hpvDest; /* address of destination buffer */
  const void _huge* hpvSource; /* address of source buffer */
  long cbCopy; /* number of bytes to copy */

The hmemcpy function copies bytes from a source buffer to a destination buffer. This function supports huge memory objects (that is, objects larger than 64K, allocated using the GlobalAlloc function).

Parameters

hpvDest

Points to a buffer that receives the copied bytes.

hpvSource

Points to a buffer that contains the bytes to be copied.

cbCopy

Specifies the number of bytes to be copied.

Return Value

This function does not return a value.

See Also

_hread, _hwrite, lstrcpy