commsfwtools/preparedefaultcommsdatabase/Tools/ceddump/inc/ceddumpglobals.h
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 2004-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 // Contains the global definitions needed across the ceddump module/exe
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent
       
    21 */
       
    22 
       
    23 
       
    24 #ifndef __CEDDUMPGLOBALS_H__
       
    25 #define __CEDDUMPGLOBALS_H__
       
    26 
       
    27 #include <metadatabase.h>
       
    28 #include <commsdattypesv1_1.h>
       
    29 #include <commsdat.h>
       
    30 
       
    31 using namespace CommsDat;
       
    32 
       
    33 #if defined(_UNICODE)
       
    34 #define _I(x) L ## x
       
    35 #else
       
    36 #define _I(x) x
       
    37 #endif
       
    38 
       
    39 /*
       
    40 #define MAX_COL_NAME_LEN        64
       
    41 
       
    42 #define 	CONNECTION_PREFERENCES				_S("ConnectionPreferences")
       
    43 #define 	IAP									_S("IAP")
       
    44 #define 	GLOBAL_SETTINGS 					_S("GlobalSettings")
       
    45 #define 	NETWORK 							_S("Network")
       
    46 #define 	LOCATION 							_S("Location")
       
    47 #define 	WAP_ACCESS_POINT 					_S("WAPAccessPoint")
       
    48 #define		DIAL_OUT_ISP						_S("DialOutISP")
       
    49 #define		DIAL_IN_ISP							_S("DialInISP")	
       
    50 #define		LAN_SERVICE							_S("LANService")
       
    51 #define		WLAN_SERVICE_EXTENSION_TABLE 		_S("WLANServiceExtensionTable")
       
    52 #define		VPN_SERVICE 						_S("VpnService")
       
    53 #define		OUTGOING_GPRS 						_S("OutgoingGPRS")
       
    54 #define		INCOMING_GPRS 						_S("IncomingGPRS")
       
    55 #define		DEFAULT_GPRS 						_S("DefaultGPRS")
       
    56 #define		MODEM_BEARER 						_S("ModemBearer")
       
    57 #define		LAN_BEARER 							_S("LANBearer")
       
    58 #define		VIRTUAL_BEARER 						_S("VirtualBearer")
       
    59 #define		WAP_IP_BEARER 						_S("WAPIPBearer")
       
    60 #define		WAP_SMS_BEARER 						_S("WAPSMSBearer")
       
    61 #define		CHARGECARD 							_S("Chargecard")
       
    62 #define		PROXIES 							_S("Proxies")
       
    63 #define		SS_PROTO_TABLE 						_S("SecureSocketTable")
       
    64 #define		AGENT_LOOKUP 						_S("AgentLookup")
       
    65 #define 	NO_MORE_RECORDS						_S("NO_MORE_RECORDS")
       
    66 
       
    67 #define Hidden 			_S("Hidden=Yes")
       
    68 #define Private 		_S("Private=Yes")
       
    69 #define ProtectedWrite 	_S("ProtectedWrite=Yes")
       
    70 #define ProtectedRead 	_S("ProtectedRead=Yes")
       
    71 
       
    72 //_LIT(Comma, 			", ");
       
    73 
       
    74 */
       
    75 
       
    76 typedef TUint32 TAttributeFlags;
       
    77 
       
    78 enum EAttributes
       
    79 	{
       
    80 	EHidden=0,
       
    81 	EPrivate,
       
    82 	EProtectedRead,
       
    83 	EProtectedWrite
       
    84 	};
       
    85 #endif
       
    86