syncmlfw/dm/settings/src/NSmlDMProfile.rh
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2002 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: Implementation of syncmlfw/dm component
       
    15 * 	This is part of syncmlfw.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 STRUCT DMPROFILES
       
    22 	{
       
    23 	STRUCT dmprofiles[];
       
    24 	}
       
    25 
       
    26 STRUCT DMPROFILE
       
    27 	{
       
    28 	LTEXT profiledisplayname;
       
    29 	WORD iapid = -1;
       
    30 	LONG transportid;// = 0x101F99F0;	//KUidNSmlMediumTypeInternet in nsmlconstants.h
       
    31 	LTEXT serverusername;
       
    32 	LTEXT serverpassword;
       
    33 	LTEXT clientpassword;
       
    34 	LTEXT serverurl;
       
    35 	LTEXT serverid;
       
    36 	LONG dmsessionid;
       
    37 	BYTE serveralertaction=1;
       
    38 	BYTE authenticationrequired = 0;
       
    39 	LONG creatorid = 0;
       
    40 	BYTE deleteallowed = 1;
       
    41 	BYTE profilehidden = 0;
       
    42 	BYTE httpauthused = 0;
       
    43 	LTEXT httpauthusername;
       
    44 	LTEXT httpauthpassword;
       
    45 	BYTE profilelock = 0;
       
    46 	}