Lionscribe <[EMAIL PROTECTED]> wrote: hv,
Your code should read #include "TestSeg2.h" not #include "TestSeg.h" As for 32K barrier, you can changing the order files in each segment (except for the first one), which should allow you for much larger sized segments. If that doesn't help, you can also get around the 32k jump by using an ExternalFunction, as is mentioned in the ReadMe.txt. LionScribe -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/ Dear Lionscribe, Thanks for your help. Yes i did it .it is fine now. I will put some ideas about my way of approach for this multiseg-sharedlibrary . 1.As a hole at any time one segment should be running and it should not cross 32K or 64K. But over all size of all segments may be more than 64K but at a time only one segment will be running. 2.If I have a Library with one segment size as 64K and application with 60K. In that case it will create any problem?Because combinely it will be more than 64K. 3. So I will devide my Library into different isolated segments(Means move all the *.c and *.h files into different segments. 4. If i want to communicate or pass values from one segment to another segment I can make use of functions like UInt16 SegTwoFunction(Char * display) . Means i have to make an entry of functions which will communicate between segments. In that case i can pass the values by useing these functions which internally may call some other functions withing that segment iteself. 5. To access from application programm i can provide one or two functions from any segment which will take care of remaining operations like calling some other internal functions. 6. If segment1 is of MAX size and SEGMENT2 is also of maximum size . If the function call from segment1 to segment2 may cause less memory problem? Or It will close segment1 and opens the segment2? I have these questions because my library which is of Big size. Thanks once again Lion for your help. Regards, Harsha Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download Now! http://messenger.yahoo.com/download.php -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
