telephonyserverplugins/ctsydispatchlayer/src/cphonedispatcher.cpp
branchRCL_3
changeset 66 07a122eea281
parent 65 630d2f34d719
equal deleted inserted replaced
65:630d2f34d719 66:07a122eea281
     1 // Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
    10 //
    10 //
    11 // Contributors:
    11 // Contributors:
    12 //
    12 //
    13 // Description:
    13 // Description:
    14 //
    14 //
    15 
       
    16 
       
    17 #include "OstTraceDefinitions.h"
       
    18 #ifdef OST_TRACE_COMPILER_IN_USE
       
    19 #include "cphonedispatcherTraces.h"
       
    20 #endif
       
    21 
    15 
    22 #include "cphonedispatcher.h"
    16 #include "cphonedispatcher.h"
    23 
    17 
    24 #include <ctsy/ltsy/mltsydispatchphoneinterface.h>
    18 #include <ctsy/ltsy/mltsydispatchphoneinterface.h>
    25 #include <ctsy/pluginapi/mmmessagemanagercallback.h>
    19 #include <ctsy/pluginapi/mmmessagemanagercallback.h>
  2409 	
  2403 	
  2410 	switch (aIpcDataPackage.iIpc)
  2404 	switch (aIpcDataPackage.iIpc)
  2411 		{
  2405 		{
  2412 
  2406 
  2413 	default:
  2407 	default:
  2414 		OstTraceDef1(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPHONEDISPATCHER_CALLBACKSYNC_1, "WARNING: CPhoneDispatcher::CallbackSync unhandled IPC=%d", aIpcDataPackage.iIpc);
  2408 		LOG(_L8("WARNING: CPhoneDispatcher::CallbackSync unhandled IPC=%d"), aIpcDataPackage.iIpc);
  2415 		__ASSERT_DEBUG(NULL, CtsyDispatcherPanic(EUnhandledCtsyIpc));
  2409 		__ASSERT_DEBUG(NULL, CtsyDispatcherPanic(EUnhandledCtsyIpc));
  2416 		break;		
  2410 		break;		
  2417 		} // switch (aIpcDataPackage.iIpc)
  2411 		} // switch (aIpcDataPackage.iIpc)
  2418 	} // CPhoneDispatcher::CallbackSync
  2412 	} // CPhoneDispatcher::CallbackSync
  2419 	
  2413