os/persistentdata/loggingservices/eventlogger/LogServ/LOGSERV.RSS
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-2010 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 // LOGCLI.RSS
    15 // 
    16 //
    17 
    18 #include <badef.rh>
    19 
    20 // Formatting constants
    21 RESOURCE LBUF r_log_lit_date_format { txt = "%D%M%Y%1 %2 %3 %H:%T:%S"; }
    22 
    23 STRUCT INT16
    24 	{
    25 	WORD value;
    26 	}
    27 
    28 //The default contact match count is 7 - the LogServ contact matching is emabled by default.
    29 //The default value is kept here for compatibility reasons. The resource file is not used anymore.
    30 //The related LogServ confml file is used for loading the default contact match count.
    31 RESOURCE INT16 r_log_contact_match_count { value = 7; }
    32 
    33 // r_name_format_values enum values are used for for initializing 
    34 // r_log_contact_name_format integer resource.
    35 ENUM r_name_format_values
    36 	{
    37 	r_western_format,
    38 	r_chinese_format
    39 	};
    40 
    41 // r_log_contact_name_format value determines the order of storing of 
    42 // {family_name, given_name} strings pair in the logs.
    43 //
    44 // If r_log_contact_name_format = r_chinese_format, then the order will be:
    45 //	{family_name,name_separator,given_name}
    46 //
    47 // If r_log_contact_name_format = r_western_format, then the order will be:
    48 //	{given_name,name_separator,family_name}
    49 //
    50 // By default r_log_contact_name_format value is set to r_western_format.
    51 // It has to be set to r_chinese_format for chinese builds.
    52 // The default value is kept here for compatibility reasons. The resource file is not used anymore.
    53 // The related LogServ confml file is used for loading the default contact name format.
    54 RESOURCE INT16 r_log_contact_name_format { value = r_western_format; }
    55