diff -r aba6b8104af3 -r 84a16765cd86 installationservices/swinstallationfw/inc/sifutils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/installationservices/swinstallationfw/inc/sifutils.h Fri Mar 19 09:33:35 2010 +0200 @@ -0,0 +1,42 @@ +/* +* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* This file defines a SIF utility library. +* +*/ + + +/** + @file + @publishedAll + @released +*/ + +#ifndef SIFUTILS_H +#define SIFUTILS_H + +namespace Usif + { + /** + This function uninstalls a component by removing it from the SCR and deleting its files. + This is a synchronous API and therefore doesn't support cancellation. Hence, it is designated + for simple installers that don't require this functionlaity. + + @param aComponentId The id of a component to be uninstalled + @leave System wide error code + */ + IMPORT_C void UninstallL(TComponentId aComponentId); + } + +#endif // SIFUTILS_H