Have you tried stepping through your code, and looking at what happened just before the error?
Parhaps a short code sample from this point in your code would help us diagnose the problem.. Alan <[EMAIL PROTECTED]> wrote in message news:67334@palm-dev-forum... > > I am using this code to register card removal notification > > if(SysCurAppDatabase (&cardNo, &dbID) == errNone) > { > > if(FtrGet(sysFtrCreator,sysFtrNumNotifyMgrVersion,&value)==0) > { > SysNotifyRegister ( cardNo, dbID,sysNotifyVolumeUnmountedEvent, NULL, > sysNotifyNormalPriority, NULL); > } > } > > > and using this code to unregister card removal notification > //Unregister for the CardRemoval Notification. > if(SysCurAppDatabase (&cardNo, &dbID) == errNone) > { > if(FtrGet(sysFtrCreator,sysFtrNumNotifyMgrVersion, &value) == 0) > { > SysNotifyUnregister(cardNo, dbID, sysNotifyVolumeUnmountedEvent, > sysNotifyNormalPriority); > } > } > > and handeling the sysAppLaunchCmdNotify launch code to receieve the notification > > > I am getting an Error when i unmount the card. I am using this in POSE > (emulator) with card setup in local directory. > > > Error: > > just called a Palm OS routine "SysNotifyBroadcastDeffered" > > Application should not call this function because it is reserved for system use > only. > > I am NOT using the API "SysNotifyBroadcastDeffered" even then I am > getting this error. > > Pl'z help me it's argent > > Regards > > -Arena > > ------------------------------------------------- > This mail helped a tree grow. Know more at http://green.sify.com > > Want to win a PC or Palm Tops or Digital Diaries or T-Shirts? > Click here http://promos.sify.com/niit/main.asp?mail > > -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
