--- [EMAIL PROTECTED] wrote: > > MemHandle recordH = DmQueryRecord(myDB, index); > if (recordH == NULL) return; > MyRecordStruct *recordP = MemHandleLock(recordH); > MemMove(myStructP, recordP, sizeof(MyRecordStruct)); > MemHandleUnlock(recordH); > > Just checking...So, I can still access myStructP, since I > now have my own copy of the data, right? >
Assuming that myStructP points to a MyRecordStruct that you have access to, yes. __________________________________________________ Do You Yahoo!? Yahoo! Movies - coverage of the 74th Academy Awards� http://movies.yahoo.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
