1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/inc/patchdata.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,58 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <e32base.h>
1.20 +
1.21 +/**
1.22 +This 32-bit variable is used to define the timer length for the BAFL backup session
1.23 +file lock notification re-registration timer.
1.24 +
1.25 +This is defined as amount of time it is expected for a client application to process
1.26 +a file lock notification and re-register for future notifications. If the timer expires
1.27 +a backup may be initiated without all file lock changes having been processed.
1.28 +
1.29 +The default value is 3 seconds.
1.30 +
1.31 +This variable is changed at ROM build time using the patchdata obey keyword.
1.32 +See Symbian OS Developer Library documentation on how to patch DLL data exports.
1.33 +
1.34 +@publishedPartner
1.35 +@released
1.36 +*/
1.37 +
1.38 +IMPORT_C extern const TInt KBaBackupFileLockReRegistrationTimeout;
1.39 +
1.40 +/**
1.41 +This 32-bit variable is used to define the polling frequency for the non-derived BAFL
1.42 +backup server file lock notification timer.
1.43 +
1.44 +If a non-derived version of the BAFL backup server is to be used to change backup file
1.45 +lock states, by calling CloseAllFiles, a timer will be started to periodically check
1.46 +if all file lock notifications have been processed. If they have or the timer expires 3
1.47 +times the CloseAllFiles function call will be completed.
1.48 +
1.49 +This variable defines the period of that timer.
1.50 +
1.51 +The default value is 3 seconds - leading to a default maximum of 9 seconds for file lock
1.52 +changes to be processed in a non-derived backup server.
1.53 +
1.54 +This variable is changed at ROM build time using the patchdata obey keyword.
1.55 +See Symbian OS Developer Library documentation on how to patch DLL data exports.
1.56 +
1.57 +@publishedPartner
1.58 +@released
1.59 +*/
1.60 +
1.61 +IMPORT_C extern const TInt KBaBackupCloseallFilesTimeout;