1.1 --- a/epoc32/include/logeng.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/logeng.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -1,9 +1,9 @@
1.4 // Copyright (c) 2002-2009 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 // which accompanies this distribution, and is available
1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 //
1.13 // Initial Contributors:
1.14 // Nokia Corporation - initial contribution.
1.15 @@ -20,6 +20,12 @@
1.16 #include <logwrap.h>
1.17 #include <logwrap.hrh>
1.18
1.19 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
1.20 + #include <logengdurations.h>
1.21 + #include <logengevents.h>
1.22 + #include <logsmspdudata.h>
1.23 +#endif
1.24 +
1.25 /**
1.26 Event types
1.27 @publishedAll
1.28 @@ -39,31 +45,6 @@
1.29 const TUid KLogTaskSchedulerEventTypeUid = {KLogTaskSchedulerEventType};
1.30
1.31 /**
1.32 -Event types
1.33 -@publishedPartner
1.34 -@released
1.35 -*/
1.36 -/** Lbs events. */
1.37 -const TUid KLogLbsSelfLocateEventTypeUid = {KLogLbsSelfLocateEventType};
1.38 -const TUid KLogLbsExternalLocateEventTypeUid = {KLogLbsExternalLocateEventType};
1.39 -const TUid KLogLbsTransmitLocationEventTypeUid = {KLogLbsTransmitLocationEventType};
1.40 -const TUid KLogLbsNetworkLocateEventTypeUid = {KLogLbsNetworkLocateEventType};
1.41 -const TUid KLogLbsAssistanceDataEventTypeUid = {KLogLbsAssistanceDataEventType};
1.42 -
1.43 -/**
1.44 -@internalComponent
1.45 -*/
1.46 -const TUid KLogPacketDataEventTypeUid = {KLogPacketDataEventType};
1.47 -
1.48 -/**
1.49 -Duration Types
1.50 -@internalComponent
1.51 -*/
1.52 -const TLogDurationType KLogDurationNone = 0;
1.53 -const TLogDurationType KLogDurationValid = 1;
1.54 -const TLogDurationType KLogDurationData = 2;
1.55 -
1.56 -/**
1.57 Flags
1.58 Marks an event as having been "read".
1.59 @publishedAll
1.60 @@ -71,24 +52,4 @@
1.61 */
1.62 const TLogFlags KLogEventRead = 0x1;
1.63
1.64 -/**
1.65 -@internalComponent
1.66 -*/
1.67 -const TLogFlags KLogEventContactSearched = 0x2;
1.68 -
1.69 -class TLogSmsPduData
1.70 -/**
1.71 -The following should be used to store SMS PDU info in event data
1.72 -@internalComponent
1.73 -*/
1.74 - {
1.75 -public:
1.76 - TInt iType; // message type;
1.77 - TInt iTotal; // total number of parts
1.78 - TInt iSent; // total number of parts sent
1.79 - TInt iDelivered; // total number of parts delivered to destination
1.80 - TInt iFailed; // total number of parts failed to be delivered to destination
1.81 - TInt iReceived; // total number of parts received for DELIVERs or SUBMITs read from the phone/SIM
1.82 - };
1.83 -
1.84 #endif