loggingservices/eventlogger/LogServ/LOGSERV.RSS
changeset 0 08ec8eefde2f
child 50 8dc8494f1e0e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/loggingservices/eventlogger/LogServ/LOGSERV.RSS	Fri Jan 22 11:06:30 2010 +0200
@@ -0,0 +1,57 @@
+// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+// LOGCLI.RSS
+// 
+//
+
+#include <badef.rh>
+
+// Formatting constants
+RESOURCE LBUF r_log_lit_date_format { txt = "%D%M%Y%1 %2 %3 %H:%T:%S"; }
+
+STRUCT INT16
+	{
+	WORD value;
+	}
+
+#ifdef SYSLIBS_TEST
+//The phone digits match count must be at least 7 otherwise the Contacts server won't perform the match properly
+RESOURCE INT16 r_log_contact_match_count { value = 8; }
+#else
+// Set number of digits to use for contacts matching
+// Set to zero to disable contacts matching when adding events
+RESOURCE INT16 r_log_contact_match_count { value = 0; }
+#endif
+
+// r_name_format_values enum values are used for for initializing 
+// r_log_contact_name_format integer resource.
+ENUM r_name_format_values
+	{
+	r_western_format,
+	r_chinese_format
+	};
+
+// r_log_contact_name_format value determines the order of storing of 
+// {family_name, given_name} strings pair in the logs.
+//
+// If r_log_contact_name_format = r_chinese_format, then the order will be:
+//	{family_name,name_separator,given_name}
+//
+// If r_log_contact_name_format = r_western_format, then the order will be:
+//	{given_name,name_separator,family_name}
+//
+// By default r_log_contact_name_format value is set to r_western_format.
+// It has to be set to r_chinese_format for chinese builds.
+RESOURCE INT16 r_log_contact_name_format { value = r_western_format; }
+