epoc32/include/logeng.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     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