How to start an application delay some time with mobile boot | developer.brewmp.com How to start an application delay some time with mobile boot | developer.brewmp.com

Developer

How to start an application delay some time with mobile boot

Forums:

I start an application with mobile boot,
I already receive message from EVT_NOTIFY in my application,but the time is not init. So I call MSLEEP or ISHELL_SetTimer that thay are not use.
This is my source:
case EVT_NOTIFY:
Log_Write(pMe->m_pLog,"Receive Notify");
ISHELL_StartApplet(pMe->a.m_pIShell,0x0101104D);
return TRUE;
case EVT_APP_START:
ISHELL_SetTimer(pMe->a.m_pIShell,10000,(PFNNOTIFY)StartApp,pMe);
return TRUE;
Please help,thanks.