convergedconnectionhandler/cchserver/cenrep/cchprivatecrkeys.h
branchRCL_3
changeset 21 f742655b05bf
parent 20 65a3ef1d5bd0
child 22 d38647835c2e
equal deleted inserted replaced
20:65a3ef1d5bd0 21:f742655b05bf
     1 /*
       
     2 * Copyright (c) 2005-2007 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:  Private Central Repository definitions of the
       
    15 *                iptelephony's cch subsystem
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CCHPRIVATECRKEYS_H
       
    21 #define CCHPRIVATECRKEYS_H
       
    22 
       
    23 
       
    24 const TUid KCRUidCch = { 0x10282CE5 }; 
       
    25 
       
    26 /**
       
    27 * Indicates if WLAN VoIP warning text, that comes when it is not possible to
       
    28 * establish and/or get emergency call through when user resides inside WLAN VoIP area,
       
    29 * should be shown. Target is to show this warning to the user only once by SysAp.
       
    30 * Possible values: 1 = warning already shown, 0 = warning not shown yet.
       
    31 */
       
    32 const TUint32 KCCHVoIPEmergencyWarningShown = 0x00000001;
       
    33 enum TCCHVoIPEmergencyWarningShown
       
    34     {
       
    35     ECCHVoIPEmergencyWarningNotYetShown = 0,
       
    36     ECCHVoIPEmergencyWarningAlreadyShown = 1
       
    37     };
       
    38 
       
    39 /**
       
    40 * Indicates if WLAN VoIP warning should be shown at all 
       
    41 * Possible values: 1 = Warning should be shown, 0 = Warning should not be shown.
       
    42 */
       
    43 const TUint32 KCCHVoIPShowEmergencyWarningOnOff = 0x00000002;
       
    44 enum TCCHVoIPEmergencyWarningOnOff
       
    45     {
       
    46     ECCHVoIPEmergencyWarningOnOffDoNotShowWarning = 0,
       
    47     ECCHVoIPEmergencyWarningOnOffShowWarning = 1
       
    48     };
       
    49 
       
    50 /**
       
    51 * Indicates if WLAN scan was activated before service enable
       
    52 * Possible values: 0 = not defined, 1 = was enabled, 2 = was not enabled
       
    53 */
       
    54 const TUint32 KCCHWasWlanScanActivatedBeforeServiceEnabling = 0x00000003;
       
    55 enum TCCHWasWlanScanActivatedBeforeServiceEnabling
       
    56     {
       
    57     ECCHWlanScanNotDefined = 0,
       
    58     ECCHWlanScanWasEnabled = 1,
       
    59     ECCHWlanScanWasNotEnabled = 2
       
    60     };
       
    61 
       
    62 /**
       
    63 * Indicates count of CCH server startups, if startup flag is set to ON
       
    64 */
       
    65 const TUint32 KCCHStartupCounter = 0x00000004;
       
    66 
       
    67 
       
    68 /**
       
    69 * Indicates if gprs roaming cost warning text, that comes when gprs connection
       
    70 * is tried to use first time, should be shown. Target is to show this warning
       
    71 * to the user only once by Cch. 1 = warning already shown, 0 = warning not shown yet.
       
    72 */
       
    73 const TUint32 KCCHGprsRoamingCostWarningShown = 0x00000005;
       
    74 enum TCCHGprsRoamingCostWarningShown
       
    75     {
       
    76     ECCHGprsRoamingCostWarningNotYetShown = 0,
       
    77     ECCHGprsRoamingCostWarningAlreadyShown = 1
       
    78     };
       
    79 
       
    80 #endif      // CCHPRIVATECRKEYS_H
       
    81 
       
    82 // End of File
       
    83