doh!
Figured out my problem... my CW project was missing one source code file so
some of the function implementations were missing (the prototypes were found
in the header files) ...
Shouldn't this have been caught by the linker?
Shehan wrote in message <839@palm-dev-forum>...
>
>I'm having the same problem. However, I don't think I'm using any globals.
>Help please! I'm using Codewarrior 6 and syncing onto a PalmV running
>PalmOS 3.1
>
>My PilotMain looks like this:
>
>DWord PilotMain(Word cmd, Ptr cmdPBP, Word launchFlags)
>{
> if(cmd == sysAppLaunchCmdNormalLaunch) {
> Err error;
>
> // 0xMMmfsbbb, where MM is major version, m is minor version
> // f is bug fix, s is stage: 3-release,2-beta,1-alpha,0-development,
> // bbb is build number for non-releases
> // V1.12b3 would be: 0x01122003
> // V2.00a2 would be: 0x02001002
> // V1.01 would be: 0x01013000
> error = RomVersionCompatible (0x03100000, launchFlags); // 3.1
> if (error) return (error);
> error = StartApplication();
> if(error) return error;
> EventLoop();
> StopApplication();
> }
> return 0;
>}
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palm.com/devzone/mailinglists.html