> I have developed a program, using the 3.5 SDK on a Unix/Linux > system, for a client of mine. > > This program has run fine for years on all Palms up to and including > the m515. ie OS 3.5 through 4.1. > > My client has now acquired a Titanium running OS 5 and he tells me > that the program I wrote for him does not work on this device Is > this possible and if so where should I turn for help ? In other > words, do I have a user problem or a programming problem ?
The usual answer is to test on the Simulator, but I don't think it runs on non-windoze systems. You can find many if not most of the problems by building against the palm0S 4 headers and turning on the flag that blocks access to struct internals. Do something like this in your Makefile: CFLAGS += -palmos4.0 -DDO_NOT_ALLOW_ACCESS_TO_INTERNALS_OF_STRUCTS --Eric House ****************************************************************************** * From the desktop of: Eric House, [EMAIL PROTECTED] * * Crosswords 4.0 for PalmOS is out!: <http://www.peak.org/~fixin/xwords> * ****************************************************************************** -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
