startup/ssmdlldatadefs.rh
changeset 13 4f959124999b
equal deleted inserted replaced
12:ab7598bdae30 13:4f959124999b
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * Resource definitions for dll data parameters used in SsmCmdLists project.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef SSMDLLDATADEFS_H
       
    20 #define SSMDLLDATADEFS_H
       
    21 
       
    22 /**
       
    23 * Custom command parameter structure for coop state change command.
       
    24 */
       
    25 STRUCT CMD_PARAM_STATE_CHANGE
       
    26     {
       
    27     WORD mainstate = 0;
       
    28     WORD substate  = 0;
       
    29     }
       
    30 /**
       
    31 * Custom command parameter structure for wait ps key command.
       
    32 */
       
    33 STRUCT CMD_PARAM_WAIT_PS
       
    34     {
       
    35     LONG category = 0;
       
    36     LONG key      = 0;
       
    37     LONG target   = 0;
       
    38     }
       
    39 
       
    40 /**
       
    41 * Custom command parameter structure for wait ps key command.
       
    42 */
       
    43 STRUCT CMD_PARAM_WAIT_PS_2
       
    44     {
       
    45     LONG category = 0;
       
    46     LONG key      = 0;
       
    47     LONG target1  = 0;
       
    48     LONG target2  = 0;
       
    49     }
       
    50 
       
    51 /**
       
    52 * Custom command parameter structure for timeout data.
       
    53 */    
       
    54 STRUCT CMD_PARAM_TIMEOUT
       
    55     {
       
    56     WORD timeout = 0;
       
    57     }
       
    58 
       
    59 #endif // SSMDLLDATADEFS_H
       
    60