>Subject: over locked a piece of code >From: "SH Luk" <[EMAIL PROTECTED]> >Date: Thu, 20 Mar 2003 20:00:37 +0800 > >I want to lock a piece of code so that the memory location will be stay >valid after quited the application. >I saw people talking about something like overlock it. But how? >Any idea? Please advise. Many thanks. >
Code isn't loaded in to memory, it is executed where it stands. Therefore no need to lock it. But you do have issues on figuring out how to jump into code. But are you talking about code, or about resources in code. Getting resources is easy. Full support in the APIs. Jumping into code is best arranged through the shared library concept, and you can provide shared library access within a program. Roger Stringer Marietta Systems, Inc. (www.RF-TP.com) -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
