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 // ----------------------------------------------------------------------------- |