loggingservices/eventlogger/LogWrap/inc/LOGENG.H
changeset 0 08ec8eefde2f
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __LOGENG_H__
       
    17 #define __LOGENG_H__
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <logwrap.h>
       
    21 #include <logwrap.hrh>
       
    22 
       
    23 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS 
       
    24 	#include <logengdurations.h>
       
    25 	#include <logengevents.h>
       
    26 	#include <logsmspdudata.h>
       
    27 #endif
       
    28 
       
    29 /**
       
    30 Event types
       
    31 @publishedAll
       
    32 @released
       
    33 */
       
    34 /** Voice call */
       
    35 const TUid KLogCallEventTypeUid = {KLogCallEventType};
       
    36 /** Data call. */
       
    37 const TUid KLogDataEventTypeUid = {KLogDataEventType};
       
    38 /** Fax call. */
       
    39 const TUid KLogFaxEventTypeUid = {KLogFaxEventType};
       
    40 /** SMS call. */
       
    41 const TUid KLogShortMessageEventTypeUid = {KLogShortMessageEventType};
       
    42 /** Email call. */
       
    43 const TUid KLogMailEventTypeUid = {KLogMailEventType};
       
    44 /** Task scheduler event. */
       
    45 const TUid KLogTaskSchedulerEventTypeUid = {KLogTaskSchedulerEventType};
       
    46 
       
    47 /**
       
    48 Flags
       
    49 Marks an event as having been "read".
       
    50 @publishedAll
       
    51 @released
       
    52 */
       
    53 const TLogFlags KLogEventRead = 0x1;
       
    54 
       
    55 #endif