How to switch on the email LED indicator in S60 devices ?
Article Metadata
Here is the code snippet for demonstrating the functionality:
Header file: EmailLedValues.h, e32property.h Library: euser.lib
TInt retVal = KErrNone;
retVal = RProperty::Set( KPropertyUidEmailLedCategory, KEmailLEDOnRequest, KSetEmailLedOn );
if( retVal != KErrNone )
{
switch( retVal )
{
case KErrNotFound:
{
// Property was not defined. Device does not have an Email LED.
CEikonEnv::InfoWinL(_L("No Email LED indicator"),_L(""));
}
break;
default:
{
// Some other error.
}
break;
}
}
The URL for downloading E-Series plugin SDK for 3rd edition and 3rd edition FP1 devices is given below:


(no comments yet)