Re:Strange behavior with forms in PODS

2006-01-13 Thread
if you mean your inactive form call pen event handler after the topper form dispear, you can call EvtFlushPenQueue() before the topper one quit ÔÚÄúµÄÀ´ÐÅÖÐÔø¾­Ìáµ½: From: Trevor Majula [EMAIL PROTECTED] Reply-To: Palm Developer Forum palm-dev-forum@news.palmos.com To: Palm Developer Forum

Re: Memory leaks

2006-01-06 Thread
seems that i ever meet such condition, later i found that the destroy function of one form doesn't been excuted, which is responsible for free some chunk ÔÚÄúµÄÀ´ÐÅÖÐÔø¾­Ìáµ½: From: Tinnus [EMAIL PROTECTED] Reply-To: Palm Developer Forum palm-dev-forum@news.palmos.com To: Palm Developer Forum

Problem with MemGluePtrNew, strange phenomenon?

2005-12-18 Thread
i am porting the libMAD to palm device, which is responsible for decoding mp3 to original wave data. there is some strange problems, the biggest one, is about MemGluePtrNew() API. for decode large chunk of data, i need a memory chunk larger than 64k, so i allocated that by calling MemGluePtrNew,

Re: Is there a tool convert xrd to rsrc?

2005-12-10 Thread
thanks Roger, but is seems that the generateXRD integrated with PODS only convert one way from other type resource to XRD:( i have checked this in palmos documents here http://www.palmos.com/dev/support/docs/dev_suite/ResourceTools/ResourceTools_GenerateXRD.html#997689 regards!

Re: MemGluePtrNew problem in codewarrior 9.0?

2005-12-09 Thread
it seems that the installation encounter some error, so i have to upgrade the cw sdk manually by copy corresponding files, and it works, thanks logan ÔÚÄúµÄÀ´ÐÅÖÐÔø¾­Ìáµ½: From: Logan Shaw [EMAIL PROTECTED] Reply-To: Palm Developer Forum palm-dev-forum@news.palmos.com To: Palm Developer Forum

Re:Playing MP3 Files

2005-11-15 Thread
you must have heard about the libMad, which is a free library for mp3 decode, after that you can play the raw voice data using palm API, but you have some work to do for porting the library to plam. there is another library, but i forget the name, you can search on the internet

Re: access ListType member lead to compile error?

2005-09-20 Thread
it really help a lot, thanks, but i have define ALLOW_ACCESS_TO_INTERNALS_OF_LISTS in my .h file, the error repeate again, there is somthing i done wrong? ÔÚÄúµÄÀ´ÐÅÖÐÔø¾­Ìáµ½: From: Logan Shaw [EMAIL PROTECTED] Reply-To: Palm Developer Forum palm-dev-forum@news.palmos.com To: Palm Developer

re: any hint for mp3 decode library?

2005-09-20 Thread
thanks for the help! ÔÚÄúµÄÀ´ÐÅÖÐÔø¾­Ìáµ½: From: Swapy John [EMAIL PROTECTED] Reply-To: Palm Developer Forum palm-dev-forum@news.palmos.com To: Palm Developer Forum palm-dev-forum@news.palmos.com Subject: re: any hint for mp3 decode library? Date:Tue, 20 Sep 2005 05:28:31 - Hello, I think

any hint for mp3 decode library?

2005-09-19 Thread
i want to port the libMad to plam os5 for mp3 decode, but meet with some problem like segment and link. first of all the libMad cannot been linked without any optimization, an error message about commit a bug of PODS will appear. and only in O1 option the library can be linked. and as a library

access ListType member lead to compile error?

2005-09-19 Thread
in one cpp file, i want to set the hasScrollBar to false, so i type such codes: #include List.h ... ListType *pList; pList = (ListType*)FrmGetObjectPtr(...); pList-attr.hasScrollBar = false; and got error: .cpp:77: invalid use of undefined type `struct ListType'

how to build a multi-segment share library in PODS?

2005-09-14 Thread
i have read a document about how to build a share library in CW which larger than 64k. the default size of share library is one segment, so there is something to do in CW to get a multi-segment library. i am using PODS now, is there any way to achieve this too? -- For information on using the

Re: .data segment full problem

2005-08-18 Thread
thanks indeed, all the advices is helpful i think yestoday i diable the exception option in PODS linker, it seem that the .data segment size decreased a lot. PODS is some weak in the segment programming and debug, especially latter, it doesn't support cross-segment debug as i know. regards!