hi all
I read a post regarding Auto starting application in 3rd edition.
http://wiki.forum.nokia.com/index.php/How_to_autostart_an_application_on_boot_up_in_3rd-_Startup_List_Management_API
I am doing the same. I have console application which i want to run on startup ..
1 application is simple Hello World.
2 UID is 0xE07695CA
3 Name of EXE is Testrsc.exe
4 Name of RSS file E07695CA_reg.rss
5 In mmp start resource section i am writing
START RESOURCE E07695CA_reg.rss
TARGETPATH \private\10003a3f\import
END
6 contents of RSS file are
#include <startupitem.rh>
// Replace this with the UID3 of your application
UID3 0xE07695CA
RESOURCE STARTUP_ITEM_INFO Testrsc
{
executable_name = "!:\\sys\\bin\\Testrsc.exe";
recovery = EStartupItemExPolicyNone;
}
could u please see where i am wrong...
This is my mmp file
TARGET Testrsc.exe
TARGETTYPE exe
UID 0 0xE07695CA
USERINCLUDE ..\inc
SYSTEMINCLUDE \epoc32\include
SOURCEPATH ..\src
SOURCE Testrsc.cpp
START RESOURCE E07695CA_reg.rss
TARGETPATH \private\10003a3f\import
END
LIBRARY euser.lib
#ifdef ENABLE_ABIV2_MODE
DEBUGGABLE_UDEBONLY
#endif
This is the RSS file E07695CA_reg.rss
#include <startupitem.rh>
UID3 0xE07695CA
RESOURCE STARTUP_ITEM_INFO Testrsc
{
executable_name = "!:\\sys\\bin\\Testrsc.exe";
recovery = EStartupItemExPolicyNone;
}
plz help
Regards
Gaurav Gupta

Reply With Quote


