Oops. I forgot to include a critical function in my previous question --
though you might have guessed from the name what it does:
void MemCopy (CharPtr dst, const CharPtr src, Word nbytes)
{
Word i;
for (i=0; i<nbytes; i++)
{
dst[i] = src[i];
}
}
----------------------
Michael Hutchens
[EMAIL PROTECTED]
- Re: Direct read from data manager structures 2 Michael Hutchens
