diff -r 98b66e4fb0be -r 26b6f0522fd8 appinstaller/AppinstUi/Daemon/Inc/SilentLauncher.h --- a/appinstaller/AppinstUi/Daemon/Inc/SilentLauncher.h Fri Apr 16 15:05:20 2010 +0300 +++ b/appinstaller/AppinstUi/Daemon/Inc/SilentLauncher.h Mon May 03 12:38:03 2010 +0300 @@ -56,7 +56,17 @@ * @param aFile - Name of the file to install * @param aStatus - Request status */ - void InstallL( const TDesC& aFile, TRequestStatus& aStatus ); + // void InstallL( const TDesC& aFile, TRequestStatus& aStatus ); + + /** + * Perform installation with file handle. + * @since 10.1 + * @param aFileHandle - Handle of the file to be installed + * @param aStatus - Request status + */ + void InstallL( RFile& aFileHandle, + const TDesC& aFile, + TRequestStatus& aStatus ); /** * Cancel the current installation. @@ -88,7 +98,9 @@ // File server RFs& iFs; // Defines if we have connected to SWI server. - TBool iConnected; + TBool iConnected; + + HBufC* iDrive; }; }