commonuisupport/uikon/srvinc/patchdata.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     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 16-bit variable is used to define the polling frequency for the derived UIKON
       
    20 backup server file lock and application closing notification timer.
       
    21 
       
    22 If a derived UIKON backup server makes a call to CloseAllFiles, a timer will be 
       
    23 started to periodically check if all file lock notifications have been processed and
       
    24 all non-server programs have been shut down. If all files and applications are closed
       
    25 or the timer expires 3 times the CloseAllFiles function call will be completed.
       
    26 
       
    27 This variable defines the period of that timer.
       
    28 
       
    29 The default value is 5 seconds - leading to a default maximum of 15 seconds for file lock
       
    30 changes to be processed and applications to be shut in a UIKON derived backup server.
       
    31 
       
    32 This variable is changed at ROM build time using the patchdata obey keyword.
       
    33 See Symbian OS Developer Library documentation on how to patch DLL data exports.
       
    34 
       
    35 @publishedPartner
       
    36 @released
       
    37 */
       
    38 
       
    39 IMPORT_C extern const TInt KUIKONBackupCloseAllFilesTimeout;
       
    40