commonservices/sysutil/inc/sysutilinternalpskeys.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 /*
       
     2 * Copyright (c) 2006-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 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef SYSUTILINTERNALPSKEYS_H
       
    21 #define SYSUTILINTERNALPSKEYS_H
       
    22 
       
    23 #include <e32property.h>
       
    24 
       
    25 /**
       
    26 UID for Disk level. This is not the preferred method for configuring the
       
    27 critical disk level, but has been left in for backwards compatibility.
       
    28 The preferred method is described here:
       
    29 @see SysUtil::DiskSpaceBelowCriticalLevelL
       
    30 
       
    31 If the preferred method is not used, that is the patchable data has not been set 
       
    32 then the Publish & Subscribe keys will be tried, or if that fails,
       
    33 from Central Repository. An error code will be returned if all fail.
       
    34 @publishedPartner
       
    35 @deprecated
       
    36 **/
       
    37 const TUid KPSUidDiskLevel = { 0x10205065 };
       
    38 
       
    39 // =============================================================================
       
    40 // Critical Disk Level Configuration API
       
    41 //
       
    42 // This API will be removed in the future, when Disk and Memory Level Keys API
       
    43 // can be used also during back-up and restore.
       
    44 // =============================================================================
       
    45 
       
    46 /**
       
    47 Threshold for RAM disk space critical level (bytes). This is not the preferred method
       
    48 for configuring the critical disk level, but has been left in for backwards compatibility.
       
    49 The preferred method is described here:
       
    50 @see SysUtil::DiskSpaceBelowCriticalLevelL
       
    51 
       
    52 If the preferred method is not used, that is the patchable data has not been set 
       
    53 then the Publish & Subscribe keys will be tried, or if that fails,
       
    54 from Central Repository. An error code will be returned if all fail.
       
    55 @publishedPartner
       
    56 @deprecated
       
    57 **/
       
    58 const TUint32 KRamDiskCriticalThreshold = 0x00000001;
       
    59 
       
    60 /**
       
    61 Threshold for disk space critical level (bytes). This is not the preferred method
       
    62 for configuring the critical disk level, but has been left in for backwards compatibility.
       
    63 The preferred method is described here:
       
    64 @see SysUtil::DiskSpaceBelowCriticalLevelL
       
    65 
       
    66 If the preferred method is not used, that is the patchable data has not been set 
       
    67 then the Publish & Subscribe keys will be tried, or if that fails,
       
    68 from Central Repository. An error code will be returned if all fail.
       
    69 @publishedPartner
       
    70 @deprecated
       
    71 **/
       
    72 const TUint32 KOtherDiskCriticalThreshold = 0x00000002;
       
    73 
       
    74 #endif      // SYSUTILINTERNALPSKEYS_H
       
    75 
       
    76 // End of File
       
    77