remotemgmt_plat/dcmo_adapter_api/inc/DcmoConst.h
changeset 0 b497e44ab2fc
child 24 13d7c31c74e0
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     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:  DCMO Constants.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __DCMOCONST_H__
       
    19 #define __DCMOCONST_H__
       
    20 
       
    21 TInt const KDCMOMaxStringSize = 255;
       
    22 	
       
    23 enum TDCMOGroup
       
    24 {
       
    25 EHardware,			// for Hardware group
       
    26 EIO,						// for I/O group
       
    27 EConnectivity,	// for Connectivity group
       
    28 ESoftware,			// for Software group
       
    29 EService				// for Service group
       
    30 };
       
    31 
       
    32 enum TDCMONode
       
    33 {
       
    34 EGroup,         	// Int, Get
       
    35 EAttached,      	// Int, Get
       
    36 EEnabled,       	// Int, Get
       
    37 EDenyUserEnable,  // Int, Get
       
    38 ENotifyUser,      // Int, Get
       
    39 EEnable, 					// Int, Set // combined EDisable with this , values ETrue/EFalse 
       
    40 EProperty,      	// Str, Get
       
    41 EDescription   		// Str, Get
       
    42 };  
       
    43 
       
    44 enum TDCMOStatus
       
    45 {
       
    46 EDcmoSuccess,
       
    47 EDcmoFail,
       
    48 EDcmoNotSupported,
       
    49 EDcmoNotFound,
       
    50 EDcmoAccessDenied,
       
    51 EDcmoUnknown
       
    52 };
       
    53 
       
    54 #endif// __DCMOCONST_H__