Thanks @EdwinHz!
So, I stumbled upon a function under emwin_support.c called 'emWin_memcpy'.
void *emWin_memcpy(void *pDst, const void *pSrc, long size)
{
return memcpy(pDst, pSrc, size);
}
From the looks of it this call seems like a means of replacing memcpy() with alternative function calls. However, emWin_memcpy does not appear to be called during runtime.
How can emWin library be re-configured to call emWin_memcpy() during runtime?