Enter Keywords:
1 - 10 of 51(0.044 seconds)
Sort By:
 
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 Rating: 9.4 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 Rating: 7.6 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 Rating: 7.6 Views: 0
Is There any thing similar to memcpy(c language) in c#
Zones: C#Date Answered: 02/11/2007 Rating: 8.0 Views: 0
baseClass1 baseClass2 baseClass3 derivedClass1 : baseClass1, baseClass2 derivedClass2 : baseClass1, baseClass3 baseClass *p[count] baseClass *t[count+1] im trying to dynamically crea...
Zones: C++Date Answered: 02/25/2001 Rating: 7.6 Views: 0
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 Rating: 6.0 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 Rating: 7.4 Views: 12
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 Rating: 7.0 Views: 5
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 Rating: 5.4 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 Rating: 8.2 Views: 127