DMA (kernel32.dll) - The CopyMemory function copies a block of memory from one location to another.
Namespace: Un4seen.Bass
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax
Parameters
- destination
- Type: SystemIntPtr
Pointer to the starting address of the copied block's destination. - source
- Type: SystemIntPtr
Pointer to the starting address of the block of memory to copy. - length
- Type: SystemInt64
Size of the block of memory to copy, in bytes.
Remarks
CAUTION: This method makes a direct call to the windows kernel.dll - you can crash everything when using it in a wrong way!
See Also