It tells you very very clearly that you have a memory access problem. Check the params passed in DmWrite. You should use
DmWrite(destp, offset, srcp, size); It is "srcp" not "&srcp". Quiz: why? :) And make sure offset has the correct value. Quiz: What should it be? Max --- Sebsono <[EMAIL PROTECTED]> wrote: > srcp = MemHandleLock (srcmemoRec); > ....... > > DmWrite (destp, offset, &srcp, size); > > MemPtrUnlock (srcp); > MemPtrUnlock (destp); > > > --- during the DmWrite , it fails saying i'm reading in Memory manager data > structures ? > thanks > > > > > > > -- > For information on using the Palm Developer Forums, or to unsubscribe, please > see http://www.palmos.com/dev/tech/support/forums/ __________________________________________________ Do You Yahoo!? Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.yahoo.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
