epoc32/include/smcmmain.h
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 2fe1408b6811
child 4 837f303aceeb
     1.1 --- a/epoc32/include/smcmmain.h	Tue Mar 16 16:12:26 2010 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,91 +0,0 @@
     1.4 -// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 -// All rights reserved.
     1.6 -// This component and the accompanying materials are made available
     1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     1.8 -// which accompanies this distribution, and is available
     1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.10 -//
    1.11 -// Initial Contributors:
    1.12 -// Nokia Corporation - initial contribution.
    1.13 -//
    1.14 -// Contributors:
    1.15 -//
    1.16 -// Description:
    1.17 -//
    1.18 -
    1.19 -#ifndef __SMUTMAIN_H__
    1.20 -#define __SMUTMAIN_H__
    1.21 -
    1.22 -#include <e32base.h>
    1.23 -
    1.24 -/**
    1.25 -@deprecated
    1.26 -@internalComponent
    1.27 -*/
    1.28 -const TInt KSmscSessionPriority = CActive::EPriorityStandard;
    1.29 -
    1.30 -/**
    1.31 -@deprecated
    1.32 -@internalComponent
    1.33 -*/
    1.34 -_LIT(KSmcmDllName,"SMCM");
    1.35 -
    1.36 -/**
    1.37 -The panic codes used by the SMS client MTM.
    1.38 -
    1.39 -@internalComponent
    1.40 -@released
    1.41 -*/
    1.42 -enum TSmcmPanic
    1.43 -	{
    1.44 -	ESmutPanicUnsupportedMsgType		= 0,
    1.45 -	ESmscEntryNotSet					= 1,
    1.46 -	ESmscWrongContextType				= 2,
    1.47 -	ESmscPanicUnexpectedCommand			= 3,
    1.48 -	ESmscUnrecognizedEntryType			= 4,
    1.49 -	ESmscAddresseeIndexOutOfRange		= 5,
    1.50 -	ESmscRecpAddresseeMiscount			= 6,
    1.51 -	ESmscDefaultSCOutOfRange			= 7,
    1.52 -	ESmscVPOutOfRange					= 8,
    1.53 -/**
    1.54 -@deprecated	Currently not used.
    1.55 -*/
    1.56 -	ESmscRetryLimitOutOfRange			= 9,
    1.57 -	ESmscBioMsgIdTypeError				= 10,
    1.58 -	ESmscSettingsNotSet					= 11,
    1.59 -	ESmscServiceIdNotSet				= 12,
    1.60 -/**
    1.61 -@deprecated	Currently not used.
    1.62 -*/
    1.63 -	ESmscSimParamWrongType				= 13,
    1.64 -/**
    1.65 -@deprecated	Currently not used.
    1.66 -*/
    1.67 -	ESmscSimParamExistingOperation		= 14,
    1.68 -/**
    1.69 -@deprecated	Currently not used.
    1.70 -*/
    1.71 -	ESmscSimParamInvalidProgressCount	= 15,
    1.72 -/**
    1.73 -@deprecated	Currently not used.
    1.74 -*/
    1.75 -	ESmscWrongCommDbAction				= 16,
    1.76 -
    1.77 -	ESmscFunctionNotSupported			= 17
    1.78 -	};
    1.79 -
    1.80 -/**
    1.81 -Panic function.
    1.82 -
    1.83 -@param	aPanic	The panic code.
    1.84 -
    1.85 -@internalComponent
    1.86 -@released
    1.87 -*/
    1.88 -inline void Panic(TSmcmPanic aPanic)
    1.89 -	{
    1.90 -	_LIT(KSmcmPanic, "SMCM");
    1.91 -	User::Panic(KSmcmPanic, aPanic);
    1.92 -	}
    1.93 -
    1.94 -#endif	// __SMUTMAIN_H__