remotestoragefw/remotefileengine/inc/rsfwfile.h
changeset 13 6b4fc789785b
parent 2 c32dc0be5eb4
equal deleted inserted replaced
2:c32dc0be5eb4 13:6b4fc789785b
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  New file attributes defined in the subsystem
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef RSFW_FILE_H
       
    20 #define RSFW_FILE_H
       
    21 
       
    22 // CONSTANTS
       
    23 // Other file attributes are defined in \epoc32\include\f32file.h and
       
    24 // f32\inc\common.h
       
    25 // KEntryAttCachePriorityHigh is reserved for possible "briefcase" use cases
       
    26 const TUint KEntryAttCachePriorityHigh=0x10000; // bit 16
       
    27 
       
    28 
       
    29 // A file attribute that marks the file as having been modified.
       
    30 // from common.h
       
    31 const TUint KEntryAttModified=0x20000000;
       
    32 
       
    33 #endif // RSFW_FILE_H
       
    34 
       
    35 // End of File