sl@0: // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0: // All rights reserved.
sl@0: // This component and the accompanying materials are made available
sl@0: // under the terms of "Eclipse Public License v1.0"
sl@0: // which accompanies this distribution, and is available
sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0: //
sl@0: // Initial Contributors:
sl@0: // Nokia Corporation - initial contribution.
sl@0: //
sl@0: // Contributors:
sl@0: //
sl@0: // Description:
sl@0: //
sl@0: 
sl@0: #ifndef __LOGENG_H__
sl@0: #define __LOGENG_H__
sl@0: 
sl@0: #include <e32std.h>
sl@0: #include <logwrap.h>
sl@0: #include <logwrap.hrh>
sl@0: 
sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS 
sl@0: 	#include <logengdurations.h>
sl@0: 	#include <logengevents.h>
sl@0: 	#include <logsmspdudata.h>
sl@0: #endif
sl@0: 
sl@0: /**
sl@0: Event types
sl@0: @publishedAll
sl@0: @released
sl@0: */
sl@0: /** Voice call */
sl@0: const TUid KLogCallEventTypeUid = {KLogCallEventType};
sl@0: /** Data call. */
sl@0: const TUid KLogDataEventTypeUid = {KLogDataEventType};
sl@0: /** Fax call. */
sl@0: const TUid KLogFaxEventTypeUid = {KLogFaxEventType};
sl@0: /** SMS call. */
sl@0: const TUid KLogShortMessageEventTypeUid = {KLogShortMessageEventType};
sl@0: /** Email call. */
sl@0: const TUid KLogMailEventTypeUid = {KLogMailEventType};
sl@0: /** Task scheduler event. */
sl@0: const TUid KLogTaskSchedulerEventTypeUid = {KLogTaskSchedulerEventType};
sl@0: 
sl@0: /**
sl@0: Flags
sl@0: Marks an event as having been "read".
sl@0: @publishedAll
sl@0: @released
sl@0: */
sl@0: const TLogFlags KLogEventRead = 0x1;
sl@0: 
sl@0: #endif