lowlevellibsandfws/apputils/inc/patchdata.h
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 // Copyright (c) 2007-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 //
       
    15 
       
    16 #include <e32base.h>
       
    17 
       
    18 /**
       
    19 This 32-bit variable is used to define the timer length for the BAFL backup session 
       
    20 file lock notification re-registration timer.
       
    21 
       
    22 This is defined as amount of time it is expected for a client application to process
       
    23 a file lock notification and re-register for future notifications. If the timer expires
       
    24 a backup may be initiated without all file lock changes having been processed.
       
    25 
       
    26 The default value is 3 seconds.
       
    27 
       
    28 This variable is changed at ROM build time using the patchdata obey keyword.
       
    29 See Symbian OS Developer Library documentation on how to patch DLL data exports.
       
    30 
       
    31 @publishedPartner
       
    32 @released
       
    33 */
       
    34 
       
    35 IMPORT_C extern const TInt KBaBackupFileLockReRegistrationTimeout;
       
    36 
       
    37 /**
       
    38 This 32-bit variable is used to define the polling frequency for the non-derived BAFL 
       
    39 backup server file lock notification timer.
       
    40 
       
    41 If a non-derived version of the BAFL backup server is to be used to change backup file 
       
    42 lock states, by calling CloseAllFiles, a timer will be started to periodically check 
       
    43 if all file lock notifications have been processed. If they have or the timer expires 3 
       
    44 times the CloseAllFiles function call will be completed.
       
    45 
       
    46 This variable defines the period of that timer.
       
    47 
       
    48 The default value is 3 seconds - leading to a default maximum of 9 seconds for file lock
       
    49 changes to be processed in a non-derived backup server.
       
    50 
       
    51 This variable is changed at ROM build time using the patchdata obey keyword.
       
    52 See Symbian OS Developer Library documentation on how to patch DLL data exports.
       
    53 
       
    54 @publishedPartner
       
    55 @released
       
    56 */
       
    57 
       
    58 IMPORT_C extern const TInt KBaBackupCloseallFilesTimeout;