os/ossrv/lowlevellibsandfws/apputils/inc/patchdata.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200 (2014-06-10)
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32base.h>
sl@0
    17
sl@0
    18
/**
sl@0
    19
This 32-bit variable is used to define the timer length for the BAFL backup session 
sl@0
    20
file lock notification re-registration timer.
sl@0
    21
sl@0
    22
This is defined as amount of time it is expected for a client application to process
sl@0
    23
a file lock notification and re-register for future notifications. If the timer expires
sl@0
    24
a backup may be initiated without all file lock changes having been processed.
sl@0
    25
sl@0
    26
The default value is 3 seconds.
sl@0
    27
sl@0
    28
This variable is changed at ROM build time using the patchdata obey keyword.
sl@0
    29
See Symbian OS Developer Library documentation on how to patch DLL data exports.
sl@0
    30
sl@0
    31
@publishedPartner
sl@0
    32
@released
sl@0
    33
*/
sl@0
    34
sl@0
    35
IMPORT_C extern const TInt KBaBackupFileLockReRegistrationTimeout;
sl@0
    36
sl@0
    37
/**
sl@0
    38
This 32-bit variable is used to define the polling frequency for the non-derived BAFL 
sl@0
    39
backup server file lock notification timer.
sl@0
    40
sl@0
    41
If a non-derived version of the BAFL backup server is to be used to change backup file 
sl@0
    42
lock states, by calling CloseAllFiles, a timer will be started to periodically check 
sl@0
    43
if all file lock notifications have been processed. If they have or the timer expires 3 
sl@0
    44
times the CloseAllFiles function call will be completed.
sl@0
    45
sl@0
    46
This variable defines the period of that timer.
sl@0
    47
sl@0
    48
The default value is 3 seconds - leading to a default maximum of 9 seconds for file lock
sl@0
    49
changes to be processed in a non-derived backup server.
sl@0
    50
sl@0
    51
This variable is changed at ROM build time using the patchdata obey keyword.
sl@0
    52
See Symbian OS Developer Library documentation on how to patch DLL data exports.
sl@0
    53
sl@0
    54
@publishedPartner
sl@0
    55
@released
sl@0
    56
*/
sl@0
    57
sl@0
    58
IMPORT_C extern const TInt KBaBackupCloseallFilesTimeout;