sysstatemgmt/systemstatemgr/test/tcmd/inc/testcmd.rh
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __TESTCMD_RH__
       
    17 #define __TESTCMD_RH__
       
    18 
       
    19 #include <ssm/ssmcmd.hrh>
       
    20 
       
    21 /**
       
    22 Command for testing state info is provided on command construction.
       
    23 */
       
    24 STRUCT SSM_TEST_PUBLISH_SYSTEM_STATE
       
    25 	{
       
    26 	LLINK conditional_information = 0; 		// Must be the first entry in this struct - Zero means command is unconditional
       
    27 	WORD type = ESsmCmdPublishSystemState; 	// Must be the second entry in this struct and must not be changed
       
    28 	WORD version = 1;						// Must be the third entry in this struct
       
    29 	}
       
    30 
       
    31 
       
    32 /**
       
    33 Command for testing swp info is provided on command construction.
       
    34 
       
    35 @publishedPartner
       
    36 @released
       
    37 */
       
    38 STRUCT SSM_TEST_PUBLISH_SYSTEM_WIDE_PROPERTY
       
    39 	{
       
    40 	LLINK conditional_information = 0; 		// Must be the first entry in this struct - Zero means command is unconditional
       
    41 	WORD type = ESsmCmdPublishSwp; 			// Must be the second entry in this struct and must not be changed
       
    42 	WORD version = 1;						// Must be the third entry in this struct
       
    43 	}
       
    44 
       
    45 
       
    46 #endif	// __TESTCMD_RH__