mtpfws/mtpfw/common/inc/mtpdatacapture.h
changeset 0 d0791faffa3f
child 19 0aa8cc770c8a
equal deleted inserted replaced
-1:000000000000 0:d0791faffa3f
       
     1 // Copyright (c) 2006-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 "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 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalComponent
       
    19 */
       
    20 
       
    21 #ifndef CMTPDATACAPTURE_H
       
    22 #define CMTPDATACAPTURE_H
       
    23 
       
    24 // MTP data caputre defines
       
    25 
       
    26 #if defined(__WINS__)
       
    27 _LIT(KRequestCaptureRootDir, "c:\\test\\data\\");
       
    28 #elif defined(__SERIES60_) 
       
    29 _LIT(KRequestCaptureRootDir, "f:\\test\\data\\");
       
    30 #else
       
    31 _LIT(KRequestCaptureRootDir, "e:\\test\\data\\");
       
    32 #endif
       
    33 
       
    34 _LIT(KRequestCaptureDirPrefix, "testcase");
       
    35 _LIT(KIToRDataPhaseOutputFile, "i_to_r_dataphase.dat");
       
    36 _LIT(KRToIDataPhaseOutputFile, "r_to_i_dataphase.dat");
       
    37 _LIT(KTestCaseFilename, "testcase.xml");
       
    38 
       
    39 #endif