mmserv/tms/tmscallserver/src/tmscallsession.cpp
branchRCL_3
changeset 9 f5c5c82a163e
parent 3 4f62049db6ac
child 11 3570217d8c21
equal deleted inserted replaced
8:03a293c97d5c 9:f5c5c82a163e
  1051 //
  1051 //
  1052 void TMSCallSession::HandleRoutingGetOutputL(const RMessage2& aMessage)
  1052 void TMSCallSession::HandleRoutingGetOutputL(const RMessage2& aMessage)
  1053     {
  1053     {
  1054     TRACE_PRN_FN_ENT;
  1054     TRACE_PRN_FN_ENT;
  1055     gint status(TMS_RESULT_DOES_NOT_EXIST);
  1055     gint status(TMS_RESULT_DOES_NOT_EXIST);
  1056     TMSAudioOutput outputtype;
  1056     TMSAudioOutput outputtype(TMS_AUDIO_OUTPUT_NONE);
  1057     if (iCallAdpt)
  1057     if (iCallAdpt)
  1058         {
  1058         {
  1059         status = iCallAdpt->GetOutput(outputtype);
  1059         status = iCallAdpt->GetOutput(outputtype);
  1060         }
  1060         }
  1061     TPckgBuf<gint> p(outputtype);
  1061     TPckgBuf<gint> p(outputtype);
  1071 void TMSCallSession::HandleRoutingGetPreviousOutputL(
  1071 void TMSCallSession::HandleRoutingGetPreviousOutputL(
  1072         const RMessage2& aMessage)
  1072         const RMessage2& aMessage)
  1073     {
  1073     {
  1074     TRACE_PRN_FN_ENT;
  1074     TRACE_PRN_FN_ENT;
  1075     gint status(TMS_RESULT_DOES_NOT_EXIST);
  1075     gint status(TMS_RESULT_DOES_NOT_EXIST);
  1076     TMSAudioOutput outputtype;
  1076     TMSAudioOutput outputtype(TMS_AUDIO_OUTPUT_NONE);
  1077     if (iCallAdpt)
  1077     if (iCallAdpt)
  1078         {
  1078         {
  1079         status = iCallAdpt->GetPreviousOutput(outputtype);
  1079         status = iCallAdpt->GetPreviousOutput(outputtype);
  1080         }
  1080         }
  1081     TPckgBuf<gint> p(outputtype);
  1081     TPckgBuf<gint> p(outputtype);