Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "memmove" in [All]

msvcrt

.
Summary
Copies count bytes of src to dest. If the source and destination overlap, the behavior of memcpy is undefined. Use memmove to handle overlapping regions.
.
Summary
Copies count bytes of characters from src to dest. If some regions of the source area and the destination overlap, memmove ensures that the original source bytes in the overlapping region are copied before being overwritten.
.

static extern IntPtr memmove(IntPtr dest, IntPtr src, UIntPtr count);

.

Declare Function memmove Lib "msvcrt.dll" (TODO) As TODO

.
Documentation
[memmove] on MSDN

 
Access PInvoke.net directly from VS: