This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

VM.C(174): error C264: intrinsic '_MemCpy': declaration/activation error

When I compile my code I get it error " VM.C(174): error C264: intrinsic '_MemCpy': declaration/activation error "

Declaration of "MemCpy" is :
void MemCpy(byte *dst, byte *src, int len, byte flag);

Call of "MemCpy" is :
MemCpy((byte *)(&dstres), (byte *)VMDstPtr, DstSize, 0);

Declaration of variable is :
extern void *VMDstPtr;
extern dwrd dstres;
extern byte DstSize;

What is reason of this error?