MEM_PROC int MEM_API MemCmp(CPOINTER pOne, CPOINTER pTwo, size_t sz);
sharemem.h
0 if equal
-1 if the first different byte in pOne is less than pTwo.
1 if the first different byte in pOne is more than pTwo.
#define _memcpy_ MemCpy Binary byte comparison of one block of memory to another. Results -1 if less, 1 if more and 0 if equal.
Functions