ccservices/cmsservices/cmsengine/Client/src/cmscontact.cpp
branchRCL_3
changeset 5 81f8547efd4f
parent 0 e686773b3f54
child 13 a6539d1e8e43
equal deleted inserted replaced
3:04ab22b956c2 5:81f8547efd4f
   280     {
   280     {
   281     return SendReceive( ECmsGetContactActionFieldCount, TIpcArgs( aContactAction ) );
   281     return SendReceive( ECmsGetContactActionFieldCount, TIpcArgs( aContactAction ) );
   282     }
   282     }
   283 
   283 
   284 // ----------------------------------------------------
   284 // ----------------------------------------------------
       
   285 // RCmsContact::SetVoiceCallDefault
       
   286 // 
       
   287 // ----------------------------------------------------
       
   288 //
       
   289 EXPORT_C void RCmsContact::SetVoiceCallDefault( TRequestStatus& aStatus ) const
       
   290 	{
       
   291 	SendReceive( ECmsSetVoiceCallDefault, TIpcArgs(), aStatus  );
       
   292 	}
       
   293 
       
   294 // ----------------------------------------------------
   285 // RCmsContact::SendMessage
   295 // RCmsContact::SendMessage
   286 // 
   296 // 
   287 // ----------------------------------------------------
   297 // ----------------------------------------------------
   288 //
   298 //
   289 void RCmsContact::SendMessage( TInt aServerMessage,
   299 void RCmsContact::SendMessage( TInt aServerMessage,
   431             delete current;
   441             delete current;
   432             }
   442             }
   433         }
   443         }
   434     }
   444     }
   435 
   445 
   436 
   446 // ----------------------------------------------------
       
   447 // RCmsContact::IsTopContact
       
   448 // 
       
   449 // ----------------------------------------------------
       
   450 //
       
   451 EXPORT_C TBool RCmsContact::IsTopContact()
       
   452     {
       
   453     #ifdef _DEBUG
       
   454         RCmsSession::WriteToLog( _L8( "RCmsContact::IsTopContact()" ) );
       
   455     #endif
       
   456     TInt isTop( EFalse );   
       
   457     TPckg<TInt> pack( isTop );
       
   458     SendReceive(ECmsIsTopContact, TIpcArgs(&pack));
       
   459            
       
   460     return isTop;
       
   461     }
       
   462 
       
   463