sysstatemgmt/systemstateplugins/test/tintgsapolicy/resource/tgsa_statetranfromstartup.rss
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:34:26 +0100
branchRCL_3
changeset 22 8cb079868133
parent 0 4e1aa6a622a0
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

// Copyright (c) 2007-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:
//

#include <ssm/ssmcmd.rh>
#include <ssm/ssmsubstates.hrh>

UID2 KUidSsmCommandListResourceFile

// SSM_COMMAND_LIST_ROOT must be the first resource in a command list resource file.
// The SSM relies on this having a resource ID of 1.
RESOURCE SSM_COMMAND_LIST_ROOT
	{
	command_list_mapping = r_command_list_mapping;
	}

RESOURCE SSM_COMMAND_LIST_MAPPING r_command_list_mapping
	{
	mappings =
		{
		SSM_COMMANDLISTID_TO_RESOURCEID
			{
			command_list_id = 0x48;
			resource_id = r_testapp_command;
			}
		};
	}


RESOURCE SSM_COMMAND_LIST r_testapp_command
   	{
	commands =
		{
		r_command_publish_state
		, r_command_statetranfromstartup
		};
	}

RESOURCE SSM_PUBLISH_SYSTEM_STATE r_command_publish_state
	{
	severity = ECmdCriticalSeverity;
	}

RESOURCE SSM_START_PROCESS_INFO r_command_statetranfromstartup
	{
	severity = ECmdCriticalSeverity;
	name = "tgsastatetranfromstartup.exe";
	execution_behaviour = ESsmWaitForSignal;
	}