该函数是Win Api,在Windows.Pas里
procedure CopyMemory(Destination: Pointer
Source: Pointer
Length: DWORD);
不过Borland用他自己的方法实现的。
the CopyMemory function copies a block of memory from one location to another.
VOID CopyMemory (
PVOID Destination, // address of copy destination
CONST VOID *Source, // address of block to copy
DWORD Length // size, in bytes, of block to copy
);
Return Values
This function has no return value.