williamr@4: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@4: // All rights reserved. williamr@4: // This component and the accompanying materials are made available williamr@4: // under the terms of the License "Eclipse Public License v1.0" williamr@4: // which accompanies this distribution, and is available williamr@4: // at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@4: // williamr@4: // Initial Contributors: williamr@4: // Nokia Corporation - initial contribution. williamr@4: // williamr@4: // Contributors: williamr@4: // williamr@4: // Description: williamr@4: // Development Tools\UTF\e32utrace.mmh williamr@4: // Executables will need to define the SYMBIAN_INCLUDE_EXECUTABLE_TRACE macro flag in their williamr@4: // mmp files in order for trace to be included. If this macro is not defined the stubbed trace dlls williamr@4: // will be used instead. williamr@4: // If SYMBIAN_INCLUDE_EXECUTABLE_TRACE is defined trace will be compiled into williamr@4: // components by default but runtime switched off. williamr@4: // @publishedPartner williamr@4: // @prototype williamr@4: // williamr@4: williamr@4: williamr@4: // We want to use an enabled version of the API. williamr@4: #if defined(SYMBIAN_INCLUDE_EXECUTABLE_TRACE) williamr@4: MACRO SYMBIAN_TRACE_EXECUTABLE_IS_INCLUDED williamr@4: #ifdef NKERN_DIR williamr@4: //LIBRARY utracekernel.lib //not implemented williamr@4: #else //NKERN_DIR williamr@4: LIBRARY utraceuser.lib williamr@4: #endif //NKERN_DIR williamr@4: #endif williamr@4: williamr@4: // We want to use a stubbed (disabled) version of the API. williamr@4: #if !defined(SYMBIAN_INCLUDE_EXECUTABLE_TRACE) williamr@4: #ifdef NKERN_DIR williamr@4: //LIBRARY utracekernelstubbed.lib //not implemented williamr@4: #else //NKERN_DIR williamr@4: LIBRARY utraceuserstubbed.lib williamr@4: #endif //NKERN_DIR williamr@4: #endif williamr@4: