epoc32/include/logeng.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
--- a/epoc32/include/logeng.h	Tue Nov 24 13:55:44 2009 +0000
+++ b/epoc32/include/logeng.h	Tue Mar 16 16:12:26 2010 +0000
@@ -1,1 +1,94 @@
-logeng.h
+// 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+// which accompanies this distribution, and is available
+// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+#ifndef __LOGENG_H__
+#define __LOGENG_H__
+
+#include <e32std.h>
+#include <logwrap.h>
+#include <logwrap.hrh>
+
+/**
+Event types
+@publishedAll
+@released
+*/
+/** Voice call */
+const TUid KLogCallEventTypeUid = {KLogCallEventType};
+/** Data call. */
+const TUid KLogDataEventTypeUid = {KLogDataEventType};
+/** Fax call. */
+const TUid KLogFaxEventTypeUid = {KLogFaxEventType};
+/** SMS call. */
+const TUid KLogShortMessageEventTypeUid = {KLogShortMessageEventType};
+/** Email call. */
+const TUid KLogMailEventTypeUid = {KLogMailEventType};
+/** Task scheduler event. */
+const TUid KLogTaskSchedulerEventTypeUid = {KLogTaskSchedulerEventType};
+
+/**
+Event types
+@publishedPartner
+@released
+*/
+/** Lbs events. */
+const TUid KLogLbsSelfLocateEventTypeUid = {KLogLbsSelfLocateEventType};
+const TUid KLogLbsExternalLocateEventTypeUid = {KLogLbsExternalLocateEventType};
+const TUid KLogLbsTransmitLocationEventTypeUid = {KLogLbsTransmitLocationEventType};
+const TUid KLogLbsNetworkLocateEventTypeUid = {KLogLbsNetworkLocateEventType};
+const TUid KLogLbsAssistanceDataEventTypeUid = {KLogLbsAssistanceDataEventType};
+
+/**
+@internalComponent
+*/
+const TUid KLogPacketDataEventTypeUid = {KLogPacketDataEventType};
+
+/**
+Duration Types
+@internalComponent
+*/
+const TLogDurationType KLogDurationNone = 0;
+const TLogDurationType KLogDurationValid = 1;
+const TLogDurationType KLogDurationData = 2;
+ 
+/**
+Flags
+Marks an event as having been "read".
+@publishedAll
+@released
+*/
+const TLogFlags KLogEventRead = 0x1;
+
+/**
+@internalComponent
+*/
+const TLogFlags KLogEventContactSearched = 0x2;
+
+class TLogSmsPduData
+/**
+The following should be used to store SMS PDU info in event data
+@internalComponent
+*/
+	{
+public:
+	TInt iType; // message type;
+	TInt iTotal;   //  total number of parts
+	TInt iSent;   //  total number of parts sent
+	TInt iDelivered;  //  total number of parts delivered to destination
+	TInt iFailed;  //  total number of parts failed to be delivered to destination
+	TInt iReceived;  //  total number of parts received for DELIVERs or SUBMITs read from the phone/SIM 
+	};
+
+#endif