installationservices/swi/source/sisregistry/client/sisregistrysession.cpp
changeset 60 245df5276b97
parent 25 98b66e4fb0be
equal deleted inserted replaced
53:ae54820ef82c 60:245df5276b97
     1 /*
     1 /*
     2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
   480     CleanupClosePushL(stream);    
   480     CleanupClosePushL(stream);    
   481     InternalizeArrayL(aComponentIds, stream);
   481     InternalizeArrayL(aComponentIds, stream);
   482     CleanupStack::PopAndDestroy(2, buffer);           
   482     CleanupStack::PopAndDestroy(2, buffer);           
   483     }
   483     }
   484 
   484 
       
   485 EXPORT_C void RSisRegistrySession::AddAppRegInfoL(const TDesC& aAppRegFile)
       
   486     {
       
   487     TInt returnCode = SendReceive(EAddAppRegInfo, TIpcArgs(&aAppRegFile));
       
   488     User::LeaveIfError(returnCode);
       
   489     }
       
   490 
       
   491 EXPORT_C void RSisRegistrySession::RemoveAppRegInfoL(const TDesC& aAppRegFile)
       
   492     {
       
   493     TInt returnCode = SendReceive(ERemoveAppRegInfo, TIpcArgs(&aAppRegFile));
       
   494     User::LeaveIfError(returnCode);
       
   495     }
   485 
   496 
   486 #endif //SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
   497 #endif //SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
   487 
   498