filemanager/Engine/inc/filemanagerprivatepskeys.h
branchRCL_3
changeset 21 65326cf895ed
parent 0 6a9f87576119
equal deleted inserted replaced
20:491b3ed49290 21:65326cf895ed
       
     1 /*
       
     2 * Copyright (c) 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:  Declaration of private ps-keys
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef FILEMANAGEPRIVATEPSKEYS_H
       
    20 #define FILEMANAGEPRIVATEPSKEYS_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32std.h>
       
    24 
       
    25 // =============================================================================
       
    26 // FileManager Status PubSub API
       
    27 // =============================================================================
       
    28 const TUid KPSUidFileManagerStatus = { 0x101F84EB }; // File Manager SID
       
    29 
       
    30 /**
       
    31 * Backup status.
       
    32 * The value is controlled by FileManager and status observed by backup checker
       
    33 */
       
    34 const TUint32 KFileManagerBkupStatus = 0x00000001;
       
    35 
       
    36 enum TFileManagerBkupStatusType
       
    37     {
       
    38     EFileManagerBkupStatusUnset   = 0x00000000,
       
    39     EFileManagerBkupStatusBackup  = 0x00000001,
       
    40     EFileManagerBkupStatusRestore = 0x00000002
       
    41     };
       
    42 
       
    43 #endif // FILEMANAGERPRIVATEPSKEYS_H
       
    44 
       
    45 // End of File
       
    46