camcordermmfplugin/mediarecorder/traces/CCMRMDFVideoRecorderTraces.h
changeset 15 50d5061ee01e
parent 14 34024902876b
child 17 880d946921e4
--- a/camcordermmfplugin/mediarecorder/traces/CCMRMDFVideoRecorderTraces.h	Fri Mar 19 09:33:47 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,66 +0,0 @@
-/*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description: CCMRMDFVideoRecorderTraces.h
-*
-*/
-// Created by TraceCompiler 1.0.27
-// DO NOT EDIT, CHANGES WILL BE LOST
-
-#ifndef __CCMRMDFVIDEORECORDERTRACES_H__
-#define __CCMRMDFVIDEORECORDERTRACES_H__
-
-#define KOstTraceComponentID 0x101f8507
-
-#define CCMRVIDEORECORDER_MDVRONEWBUFFERS 0x40001
-
-
-inline TBool OstTraceGen2( TUint32 aTraceID, TInt aParam1, TInt aParam2 )
-    {
-    TBool retval = BTrace8( KBTraceCategoryOpenSystemTrace, EOstTraceActivationQuery, KOstTraceComponentID, aTraceID );
-    if ( retval )
-        {
-        TUint8 data[ 8 ];
-        TUint8* ptr = data;
-        *( ( TInt* )ptr ) = aParam1;
-        ptr += sizeof ( TInt );
-        *( ( TInt* )ptr ) = aParam2;
-        ptr += sizeof ( TInt );
-        ptr -= 8;
-        retval = OstSendNBytes( KBTraceCategoryOpenSystemTrace, EOstTrace, KOstTraceComponentID, aTraceID, ptr, 8 );
-        }
-    return retval;
-    }
-
-inline TBool OstTraceGen2( TUint32 aTraceID, TInt32 aParam1, TInt32 aParam2 )
-    {
-    TBool retval = BTrace8( KBTraceCategoryOpenSystemTrace, EOstTraceActivationQuery, KOstTraceComponentID, aTraceID );
-    if ( retval )
-        {
-        TUint8 data[ 8 ];
-        TUint8* ptr = data;
-        *( ( TInt* )ptr ) = aParam1;
-        ptr += sizeof ( TInt );
-        *( ( TInt* )ptr ) = aParam2;
-        ptr += sizeof ( TInt );
-        ptr -= 8;
-        retval = OstSendNBytes( KBTraceCategoryOpenSystemTrace, EOstTrace, KOstTraceComponentID, aTraceID, ptr, 8 );
-        }
-    return retval;
-    }
-
-
-#endif
-
-// End of file
-