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

memcpy (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.

C# Signature:

[DllImport("msvcrt.dll", EntryPoint = "memcpy", CallingConvention = CallingConvention.Cdecl, SetLastError = false)]
public static extern IntPtr memcpy(IntPtr dest, IntPtr src, UIntPtr count);

VB Signature:

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

Return Value:

The value of dest.

User-Defined Types:

None.

Alternative Managed API:

System.Buffer.BlockCopy, Marshal.Copy and Array.Copy provide similar services, but require one or two managed arrays instead of pointers.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

public static Bitmap Clone(Bitmap src)

        {
            // get source image size
            int width = src.Width;
            int height = src.Height;

            // lock source bitmap data
            BitmapData srcData = src.LockBits(
                new Rectangle(0, 0, width, height),
                ImageLockMode.ReadWrite, src.PixelFormat);

            // create new image
            Bitmap dst = new Bitmap(width, height, src.PixelFormat);

            // lock destination bitmap data
            BitmapData dstData = dst.LockBits(
                new Rectangle(0, 0, width, height),
                ImageLockMode.ReadWrite, dst.PixelFormat);

            memcpy(dstData.Scan0, srcData.Scan0, new UIntPtr((uint)height * (uint)srcData.Stride));

            // unlock both images
            dst.UnlockBits(dstData);
            src.UnlockBits(srcData);

            return dst;
        }

Documentation
memcpy on MSDN

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions