void MemCopy(int source, int dest, int size)
Does a direct memory copy between two memory pointers. This is an advanced function and should, generally speaking, not be used. ^_^
int ptr1 = Malloc(256); int ptr2 = Malloc(256); MemCopy(ptr1, ptr2, 256);
There are no talkbacks on this documentation page yet. Post the first?
Doc Nav |
Your docs |