static UInt32 PalmMain( UInt16 cmd, MemPtr cmdPBP, UInt16 launchFlags)
{
Err error;
SysNotifyParamType *notifyP;
switch (cmd) {
.
.
.
case sysAppLaunchCmdNotify :
notifyP = ( SysNotifyParamType *)cmdPBP;
if( notifyP->notifyType == sysNotifyEventDequeuedEvent){
return EvtNotifyHandler(notifyP);
}
break;
default:
break;
}
return errNone;
}
At 15:21 03/02/21 +0900, YAMADA Tatsushi wrote:
Hi,
You can intercept this event by using Notification Manager. Register your handler for EventDequeueEvent and you can see all event.
Here's some code
YAMADA Tatsushi Hacker Dude-san http://simple-palm.com mailto:[EMAIL PROTECTED]
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
