0
|
1 |
// Copyright (c) 2007-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 the License "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 |
// Development Tools\UTF\e32utrace.mmh
|
|
15 |
// Executables will need to define the SYMBIAN_INCLUDE_EXECUTABLE_TRACE macro flag in their
|
|
16 |
// mmp files in order for trace to be included. If this macro is not defined the stubbed trace dlls
|
|
17 |
// will be used instead.
|
|
18 |
// If SYMBIAN_INCLUDE_EXECUTABLE_TRACE is defined trace will be compiled into
|
|
19 |
// components by default but runtime switched off.
|
|
20 |
// @publishedPartner
|
|
21 |
// @prototype
|
|
22 |
//
|
|
23 |
|
|
24 |
|
|
25 |
// We want to use an enabled version of the API.
|
|
26 |
#if defined(SYMBIAN_INCLUDE_EXECUTABLE_TRACE)
|
|
27 |
MACRO SYMBIAN_TRACE_EXECUTABLE_IS_INCLUDED
|
|
28 |
#ifdef NKERN_DIR
|
|
29 |
//LIBRARY utracekernel.lib //not implemented
|
|
30 |
#else //NKERN_DIR
|
|
31 |
LIBRARY utraceuser.lib
|
|
32 |
#endif //NKERN_DIR
|
|
33 |
#endif
|
|
34 |
|
|
35 |
// We want to use a stubbed (disabled) version of the API.
|
|
36 |
#if !defined(SYMBIAN_INCLUDE_EXECUTABLE_TRACE)
|
|
37 |
#ifdef NKERN_DIR
|
|
38 |
//LIBRARY utracekernelstubbed.lib //not implemented
|
|
39 |
#else //NKERN_DIR
|
|
40 |
LIBRARY utraceuserstubbed.lib
|
|
41 |
#endif //NKERN_DIR
|
|
42 |
#endif
|
|
43 |
|