|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
|
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
MoveMemory
The MoveMemory function moves a block of memory from one location to another.
VOID MoveMemory (
PVOID Destination,
| // address of move destination
| CONST VOID *Source,
| // address of block to move
| DWORD Length
| // size, in bytes, of block to move
| );
|
|
Parameters
Destination
Points to the starting address of the destination of the move.
Source
Points to the starting address of the block of memory to move.
Length
Specifies the size, in bytes, of the block of memory to move.
Return Values
This function has no return value.
Remarks
The source and destination blocks may overlap.
See Also
CopyMemory, FillMemory, ZeroMemory
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|