This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

请问一下,memcpy函数的问题?

Other Parts Discussed in Thread: CONTROLSUITE

    //memcpy(&RamfuncsRunStart, &RamfuncsLoadStart, (Uint32)&RamfuncsLoadSize);
    MemCopy(&RamfuncsLoadStart, &RamfuncsLoadEnd, &RamfuncsRunStart);

我从Controlsuite中示例程序中找到了memcpy函数,写了一个小程序可以运行。但程序写得大一点后,memcpy函数执行有问题。

于是换了MemCopy函数,可以正常运行。

我想请问一下,这两个函数的应用上有什么区别吗?