First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 This 32-bit variable is used to define the timer length for the BAFL backup session
20 file lock notification re-registration timer.
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.
26 The default value is 3 seconds.
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.
35 IMPORT_C extern const TInt KBaBackupFileLockReRegistrationTimeout;
38 This 32-bit variable is used to define the polling frequency for the non-derived BAFL
39 backup server file lock notification timer.
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.
46 This variable defines the period of that timer.
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.
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.
58 IMPORT_C extern const TInt KBaBackupCloseallFilesTimeout;