> Check out this information in the knowledge base:
> <http://oasis.palm.com/dev/kb/papers/1469.cfm>
>
> It tells you how (using Codewarrior) to check to make sure that
>
> everything is in the proper segment. I had this same thing happen to me
> yesterday; I accidentally moved a file to another segment.

What means the sentence "comment out the code in PilotMain() that handles the
sysAppLaunchCmdNormalLaunch command" ?

what should i comment out ?
My startup code is the following :

static DWord StarterPilotMain(Word cmd, Ptr cmdPBP, Word launchFlags){

    Err error;
    error = RomVersionCompatible (version20, launchFlags);

    if (error)
        return error;

    switch (cmd){
       case sysAppLaunchCmdNormalLaunch:
           error = AppStart();
           if (error)
                return error;
           FrmGotoForm(START_UP_FORM);
           AppEventLoop();
           AppStop();
           break;

        default:
            break;
    }
    return 0;
}

Thanks



-- 
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to