featuremgmt/featuremgr/src/clientdll/featmgrclient.cpp
changeset 15 3eacc0623088
parent 14 15018f1726c7
child 17 55f2396f6d25
equal deleted inserted replaced
14:15018f1726c7 15:3eacc0623088
   382 
   382 
   383 // -----------------------------------------------------------------------------
   383 // -----------------------------------------------------------------------------
   384 // RFeatMgrClient::ReRequestNotification(TUid&, TRequestStatus&)
   384 // RFeatMgrClient::ReRequestNotification(TUid&, TRequestStatus&)
   385 // -----------------------------------------------------------------------------
   385 // -----------------------------------------------------------------------------
   386 //
   386 //
   387 TInt RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus )
   387 void RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus )
   388     {
   388     {
   389     TPckgBuf<TInt> pckg;
   389     TPckgBuf<TInt> pckg;
   390     TInt retval( KErrNone );
   390     iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
   391     
   391 	  TIpcArgs args( &iFeaturePckg );
   392 	iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
   392   	SendReceive( EFeatMgrReqNotify, args, aStatus );
   393 	TIpcArgs args( &iFeaturePckg );
       
   394 	SendReceive( EFeatMgrReqNotify, args, aStatus );
       
   395 
       
   396     return retval;
       
   397     }
   393     }
   398 
   394 
   399 // -----------------------------------------------------------------------------
   395 // -----------------------------------------------------------------------------
   400 // RFeatMgrClient::RequestNotification(RFeatureUidArray&, TUid&, TRequestStatus&)
   396 // RFeatMgrClient::RequestNotification(RFeatureUidArray&, TUid&, TRequestStatus&)
   401 // -----------------------------------------------------------------------------
   397 // -----------------------------------------------------------------------------