cbs/cbsserver/McnClientSrc/CbsMcnPanic.cpp
author hgs
Tue, 10 Aug 2010 13:19:41 +0300
changeset 38 bc103bfb69cf
parent 33 8d5d7fcf9b59
permissions -rw-r--r--
201031_02

/*
* Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  This is called by this library's functions on critical error situations.
*
*/


// INCLUDE FILES

#include <e32svr.h>
#include <cbsmcnpanic.h>        // common header

// CONSTANTS

_LIT( KMcnPanic, "CbsMcn" );

// ==================== LOCAL FUNCTIONS ====================

// -----------------------------------------------------------------------------
// CbsMcnPanic
// Panics the McnClient
// Returns: None
// -----------------------------------------------------------------------------
//
GLDEF_C void CbsMcnPanic( 
    TInt aPanic )
    {
    User::Panic( KMcnPanic, aPanic );   
    }

//  End of File