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