1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __SSMSTATES_HRH__
17 #define __SSMSTATES_HRH__
22 Enumeration of the main system states for the System State Manager
29 The total value of the state can occupy a maximum of the lower 24 bits of a TUint32.
30 This has been divided into 8 bits (0-0xff for TSsmMainSystemStates, 16 bits (0-0xffff) for KSsmAnyMinorState
32 enum TSsmMainSystemStates
34 ESsmStartup = 0, // This must be 0 for compatibility with existing GSA components
40 ESsmEmergencyCallsOnly,
41 /** Main states are 16 bits, but 8 bits are reserved for internal use, so allowed values range is until 0xFF */
42 ESsmMainSystemStateMax = 0xFF
46 Represents any sub state, used for transitioning to policies where you don't know (or care)
51 const TUint16 KSsmAnySubState = 0xFFFF;
53 #endif //__SSMSTATES_HRH__