sysstatemgmt/systemstatemgr/cmn/src/ssmpatchableconstants.cpp
author Tapani Kanerva <Tapani.Kanerva@nice.fi>
Thu, 11 Nov 2010 14:35:29 +0000
branchRCL_3
changeset 86 79105dd92dc2
parent 0 4e1aa6a622a0
permissions -rw-r--r--
Export meaningful default HWRM policy files, to fix Bug 3852

// Copyright (c) 2009 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: Method to read patchable constant value.
//

#include <e32base.h>
#include <u32hal.h>
#include <e32svr.h>
#include <ssm/ssmpatchableconstants.h>

#ifdef SYMBIAN_SSM_GRACEFUL_SHUTDOWN
EXPORT_C TUint32 IsSsmGracefulShutdown()
	{
	TUint32 retVal = KSsmGracefulShutdown;

#ifdef __WINS__
	TUint32 valueOfKSsmGracefulShutdown = 0;
// KSsmGracefulShutdown is a ROM patchable constant, so need an emulator equivalent
// if WINS then read value from epoc.ini, requires licencees to set property in epoc.ini.
// Usage: In epoc.ini patchdata_ssmcmn_dll_KSsmGracefulShutdown 0xFFFFFFFF	(Can be any non-zero value)

	if (UserSvr::HalFunction(EHalGroupEmulator,EEmulatorHalIntProperty,(TAny*)"patchdata_ssmcmn_dll_KSsmGracefulShutdown",&valueOfKSsmGracefulShutdown) == KErrNone)
		{
		retVal = valueOfKSsmGracefulShutdown;
		}
#endif // __WINS__
	return retVal;
	}
#endif // SYMBIAN_SSM_GRACEFUL_SHUTDOWN
	
EXPORT_C TUint32 IsSsmGracefulOffline()
	{
	TUint32 retVal = KSsmGracefulOffline;

#ifdef __WINS__  
        // KSsmGracefulOffline is a ROM patchable constant, so need an emulator equivalent
        // if WINS then read value from epoc.ini, requires licencees to set property in epoc.ini. This value is 0xFFFFFFFF if feature is enabled.
        // Usage: In epoc.ini patchdata_KSsmGracefulOffline 0xFFFFFFFF (Can be any non-zero value)
        TUint32 readValueOfOffline = 0;
	    if( UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalIntProperty, (TAny*)"patchdata_KSsmGracefulOffline", &readValueOfOffline) == KErrNone )
	        {
	        retVal = readValueOfOffline;
	        }
#endif // __WINS__
	return retVal;
	}