author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). |
sl@0 | 2 |
// All rights reserved. |
sl@0 | 3 |
// This component and the accompanying materials are made available |
sl@0 | 4 |
// under the terms of "Eclipse Public License v1.0" |
sl@0 | 5 |
// which accompanies this distribution, and is available |
sl@0 | 6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html". |
sl@0 | 7 |
// |
sl@0 | 8 |
// Initial Contributors: |
sl@0 | 9 |
// Nokia Corporation - initial contribution. |
sl@0 | 10 |
// |
sl@0 | 11 |
// Contributors: |
sl@0 | 12 |
// |
sl@0 | 13 |
// Description: |
sl@0 | 14 |
// logcli.dll Log engine, to be included in ROM only if logwrap.dll is included |
sl@0 | 15 |
// logcli.rsc Resource definitions for log engine |
sl@0 | 16 |
// |
sl@0 | 17 |
// |
sl@0 | 18 |
|
sl@0 | 19 |
/** |
sl@0 | 20 |
@file |
sl@0 | 21 |
*/ |
sl@0 | 22 |
|
sl@0 | 23 |
#include "LogEng.cfg" |
sl@0 | 24 |
|
sl@0 | 25 |
TARGET logcli.dll |
sl@0 | 26 |
CAPABILITY All -Tcb |
sl@0 | 27 |
TARGETTYPE dll |
sl@0 | 28 |
UID 0x1000008d 0x10005343 |
sl@0 | 29 |
VENDORID 0x70000001 |
sl@0 | 30 |
|
sl@0 | 31 |
SMPSAFE |
sl@0 | 32 |
//CodeWarrior compilation options - disable the "illegal pragma" warning |
sl@0 | 33 |
OPTION CW -w noillpragmas |
sl@0 | 34 |
|
sl@0 | 35 |
SOURCEPATH . |
sl@0 | 36 |
DOCUMENT LogEng.cfg |
sl@0 | 37 |
|
sl@0 | 38 |
SOURCEPATH ../LogCli/src |
sl@0 | 39 |
SOURCE LOGTYPE.CPP |
sl@0 | 40 |
SOURCE LOGCLI.CPP |
sl@0 | 41 |
SOURCE LOGDLL.CPP |
sl@0 | 42 |
SOURCE LOGFILT.CPP |
sl@0 | 43 |
SOURCE logpackage.cpp |
sl@0 | 44 |
SOURCE LOGVIEW.CPP |
sl@0 | 45 |
SOURCE LogViewObserver.cpp |
sl@0 | 46 |
|
sl@0 | 47 |
SOURCE LogChangeDefinition.cpp |
sl@0 | 48 |
SOURCE logservcli.cpp |
sl@0 | 49 |
SOURCE logclientop.cpp |
sl@0 | 50 |
SOURCE LogClientObserver.cpp |
sl@0 | 51 |
SOURCE LogClientChangeObserver.cpp |
sl@0 | 52 |
|
sl@0 | 53 |
SOURCE LogViewWindow.cpp |
sl@0 | 54 |
SOURCE LogViewWindowFetcher.cpp |
sl@0 | 55 |
SOURCE LogViewWindowLockObserver.cpp |
sl@0 | 56 |
SOURCE LogViewWindowChangeObserver.cpp |
sl@0 | 57 |
|
sl@0 | 58 |
SOURCE LogCliServerShared.cpp |
sl@0 | 59 |
|
sl@0 | 60 |
USERINCLUDE ../LogCli/inc |
sl@0 | 61 |
USERINCLUDE ../logcntmodel/inc |
sl@0 | 62 |
USERINCLUDE ../Shared |
sl@0 | 63 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
sl@0 | 64 |
|
sl@0 | 65 |
LIBRARY euser.lib |
sl@0 | 66 |
LIBRARY logwrap.lib |
sl@0 | 67 |
LIBRARY bafl.lib |
sl@0 | 68 |
LIBRARY estor.lib |
sl@0 | 69 |
|
sl@0 | 70 |
START WINS |
sl@0 | 71 |
BASEADDRESS 0x4AD80000 |
sl@0 | 72 |
END |
sl@0 | 73 |
|
sl@0 | 74 |
#ifdef MMPSWITCH_LOGGING_ENABLED |
sl@0 | 75 |
LIBRARY flogger.lib |
sl@0 | 76 |
LIBRARY efsrv.lib |
sl@0 | 77 |
MACRO LOGGING_ENABLED |
sl@0 | 78 |
#endif |
sl@0 | 79 |
|
sl@0 | 80 |
#ifdef MMPSWITCH_LOGGING_CREATE_LOG_DIRECTORY |
sl@0 | 81 |
MACRO LOGGING_CREATE_LOG_DIRECTORY |
sl@0 | 82 |
#endif |
sl@0 | 83 |
|
sl@0 | 84 |
#ifdef MMPSWITCH_LOGGING_WIPE_ON_BOOT |
sl@0 | 85 |
MACRO LOGGING_WIPE_ON_BOOT |
sl@0 | 86 |
#endif |
sl@0 | 87 |
|
sl@0 | 88 |