Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: Dyndrilliac on July 11, 2005, 02:37 PM

Title: Performance of memcpy() vs CopyMemory
Post by: Dyndrilliac on July 11, 2005, 02:37 PM
I was told that using memcpy from string.h is faster than CopyMemory from windows.h. Is this true?
Title: Re: Performance of memcpy() vs CopyMemory
Post by: R.a.B.B.i.T on July 11, 2005, 02:42 PM
memcpy() is in windows.h (or stdlib.h, I forget which).  Unless you're doing something which would require absolute speed (like calculating intercept vectors for missiles), it really doesn't matter.
Title: Re: Performance of memcpy() vs CopyMemory
Post by: Adron on July 11, 2005, 06:07 PM
When you use memcpy it will typically be inlined and optimized by the compiler, while CopyMemory might not be. That's a possible explanation for a performance difference between them.