From: Jeff Ishaq [mailto:[EMAIL PROTECTED]] > Then, in my code, I simply join together the chunks into one > contiguous piece of memory before I call DmCreateDatabaseFromImage().
But you can't normally allocate a contiguous piece of memory bigger than 64K in the first place. (Well, yes there are feature pointers...) > Can someone kindly point me in the right direction? > Or if not, creative solutions are much welcomed. :) You can use Par (http://www.djw.org) to break up your over-64K prc into multiple sub-64K prc's. Include each as a separate resource like you already doing. Then at runtime, still extract each one using DmCreateDatabaseFromImage. Finally move all the resources into a single database via DmDetachResource and DmAttachResource. Finally delete the now-empty temp databases, leaving the full one remaining. -slj- -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
