sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: sl@0: // INCLUDE FILES sl@0: #include sl@0: sl@0: // LOCAL CONSTANTS AND MACROS sl@0: _LIT(KTxt,"featureuninstaller: mainL failed"); sl@0: sl@0: sl@0: // ============================= LOCAL FUNCTIONS =============================== sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // mainL sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: LOCAL_C void mainL() sl@0: { sl@0: // Connect Feature Control sl@0: RFeatureControl featureControl; sl@0: User::LeaveIfError( featureControl.Open() ); sl@0: sl@0: // Example code disables an existing feature. sl@0: // Comment or uncomment code when needed. sl@0: sl@0: // Specify in your .pkg file: sl@0: // @"featureuninstaller.sisx", (0x10283304) sl@0: sl@0: //Replace UID 0x00000000 with real value sl@0: TUid featureUid( TUid::Uid( 0x00000000 ) ); sl@0: sl@0: // Feature data is 32-bit quantity for client read and write. Feature data is sl@0: // defined by owner of the feature and can contain for example flags, sl@0: // enumeratons and/or integers. sl@0: // Set feature data. Replace with real value! sl@0: // Uncomment when needed! sl@0: // TUint32 featureData( 0x00000000 ); sl@0: sl@0: // Inform feature manager that your executable is launched by the software installer (SWI) sl@0: // and it wishes to set, add, delete, enable or disable features in feature manager. This sl@0: // function must be called before any API calls by RFeatureControl that add, set, delete sl@0: // enable, or disable features so that changes in feature manager are cached to be rolled sl@0: // back if the installationhas user-aborted or failed. Otherwise, feature manipulations will sl@0: // be committed directly into feature manager and will not be possible to undo them in the sl@0: // case of abort. sl@0: // A call to SWIStart must be accompanied by a call to SWIEnd after all API calls by sl@0: // RFeatureControl functions that manipulate features. sl@0: User::LeaveIfError(featureControl.SWIStart()); sl@0: sl@0: // Disable an existing feature. sl@0: User::LeaveIfError( featureControl.DisableFeature( featureUid ) ); sl@0: sl@0: // Inform feature manager that caching feature manipulations should stop and they should be sl@0: // committed to feature manager. sl@0: // A call to this API should follow the call to SWIStart before any RFeatureControl API calls sl@0: // that manipulate features to feature manager. sl@0: User::LeaveIfError(featureControl.SWIEnd()); sl@0: sl@0: // OR disable an exsiting feature and set feature data. sl@0: // User::LeaveIfError( featureControl.SetFeature( featureUid, EFalse, featureData ) ); sl@0: sl@0: featureControl.Close(); sl@0: } sl@0: // ============================ MEMBER FUNCTIONS =============================== sl@0: sl@0: TInt E32Main() // main function called by E32 sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack sl@0: TRAPD( error,mainL() ); // Run main method sl@0: __ASSERT_ALWAYS( !error,User::Panic(KTxt,error) ); sl@0: delete cleanup; // destroy clean-up stack sl@0: __UHEAP_MARKEND; sl@0: return 0; // and return sl@0: } sl@0: sl@0: sl@0: // End of file