Advertisement

1 - 10 of 50 containing alltags:("memcpy") (0 seconds)
I saw a lot of usage of memcpy(var1, var2, size) in a commercial code. Is that a win32 function? How can I find the definition of it? How to use it? In the commercial code, it is used to copy and...
Zones: C++Date Answered: 06/25/2001 Grade: A Views: 0
Hi, I am not an C/C++ expert, but would like to fix some issue in one program. What happenes is that program terminates (including with "Send to MS" message). Going up and down the code everyt...
Zones: CDate Answered: 10/22/2006 Grade: B Views: 0
Hello, Can anyone please explain in simple terms what the following function does, so I can try to find a VB.Net equivalent ? Thank you. void set_name(unsigned char *nm, struct prs *prs)  ...
Zones: CDate Answered: 11/02/2006 Grade: A Views: 14
Is There any thing similar to memcpy(c language) in c#
Zones: C#Date Answered: 02/11/2007 Grade: A Views: 18
In a 16-bit Windows app, I have allocated a gloabl memory block of 90000 bytes (array of 300 elements of 300 bytes each). The memory is allocated OK, but when I try to memcpy something into element...
Zones: CDate Answered: 01/29/1999 Grade: B Views: 0
What is the difference between memcpy and memmove? Online help says about memmove that "memmove ensures that the original source bytes in the overlapping region are copied before being overwritten....
Zones: C++Date Answered: 04/19/1999 Grade: A Views: 4
i need to do an efficient memory copy (memcpy) with two arrays. for example: dim a() as byte, b() as byte redim a(500) redim b(10000) ' i need to copy b(1000 to 1501) into a. ' how do i do that ?...
Zones: Visual BasicDate Answered: 01/10/2000 Grade: C Views: 8
Hi experts, Can anyone tell me how these functions are actually used? The only place I actually saw these functions is at the back of K&R, which doesn't really go into detail. A code snippet wou...
Zones: CDate Answered: 03/19/2002 Grade: A Views: 0
how to copy the content of a huge byte() (byte array) to another, as we can do in c using memcpy() ? to be more specific, for example, byte[] ba1; byte[] ba2 = new byte[100]; ba1 = new Str...
Zones: JavaDate Answered: 09/20/2001 Grade: A Views: 99
Hello Experts... I'm trying to implement a simulation of the transport, network, datalink, and ethernet layers of the OSI. I need to pass a message from main to transport(), slap a header on ...
Zones: CDate Answered: 02/17/2002 Grade: B Views: 0