os/ossrv/lowlevellibsandfws/apputils/inc/patchdata.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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;