os/persistentdata/loggingservices/eventlogger/LogServ/LOGSERV.RSS
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/eventlogger/LogServ/LOGSERV.RSS	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,55 @@
     1.4 +// Copyright (c) 2002-2010 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 +// LOGCLI.RSS
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <badef.rh>
    1.22 +
    1.23 +// Formatting constants
    1.24 +RESOURCE LBUF r_log_lit_date_format { txt = "%D%M%Y%1 %2 %3 %H:%T:%S"; }
    1.25 +
    1.26 +STRUCT INT16
    1.27 +	{
    1.28 +	WORD value;
    1.29 +	}
    1.30 +
    1.31 +//The default contact match count is 7 - the LogServ contact matching is emabled by default.
    1.32 +//The default value is kept here for compatibility reasons. The resource file is not used anymore.
    1.33 +//The related LogServ confml file is used for loading the default contact match count.
    1.34 +RESOURCE INT16 r_log_contact_match_count { value = 7; }
    1.35 +
    1.36 +// r_name_format_values enum values are used for for initializing 
    1.37 +// r_log_contact_name_format integer resource.
    1.38 +ENUM r_name_format_values
    1.39 +	{
    1.40 +	r_western_format,
    1.41 +	r_chinese_format
    1.42 +	};
    1.43 +
    1.44 +// r_log_contact_name_format value determines the order of storing of 
    1.45 +// {family_name, given_name} strings pair in the logs.
    1.46 +//
    1.47 +// If r_log_contact_name_format = r_chinese_format, then the order will be:
    1.48 +//	{family_name,name_separator,given_name}
    1.49 +//
    1.50 +// If r_log_contact_name_format = r_western_format, then the order will be:
    1.51 +//	{given_name,name_separator,family_name}
    1.52 +//
    1.53 +// By default r_log_contact_name_format value is set to r_western_format.
    1.54 +// It has to be set to r_chinese_format for chinese builds.
    1.55 +// The default value is kept here for compatibility reasons. The resource file is not used anymore.
    1.56 +// The related LogServ confml file is used for loading the default contact name format.
    1.57 +RESOURCE INT16 r_log_contact_name_format { value = r_western_format; }
    1.58 +