Update contrib.
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 #ifndef _A3F_TRACE_HEAP_H_
27 #define _A3F_TRACE_HEAP_H_
31 * TraceHeap is a container holding the bitmask that defines active trace groups
32 * This class is used to hold the debug mask of the inspected process
37 IMPORT_C static void CreateL(const TUint aDefaultMask=0);
38 IMPORT_C static TUint32 TraceMask();
39 IMPORT_C static void SetTraceMask( const TUint32 aTraceMask );
40 IMPORT_C static TBool IsMaskOn( const TUint32 aMask );
41 IMPORT_C static void SetLevel( const TUint32 aDbgLevel );
42 IMPORT_C static TBool IsBelowLevel( const TUint32 aLevel );
43 IMPORT_C static TUint32 TraceLevel();
44 IMPORT_C static TBool IsApiOnly();
45 IMPORT_C static void SetApiOnly( const TBool aApiOnly);
48 static TUint32* iTraceMask;
49 static TUint32* iTraceLevel;
50 static TBool* iApiOnly;
51 static RHeap* iTraceHeap;
54 #endif // _A3F_TRACE_HEAP_H_