telephonyserverplugins/multimodetsy/test/Te_LoopBack/Te_LoopBackATSTD.H
changeset 0 3553901f7fa8
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 // Copyright (c) 1997-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 // This file contains no class definitions.  It contains the panic information
       
    15 // used in the Etel Regression Test Harness and a couple of globally useful
       
    16 // string definitions.
       
    17 // 
       
    18 //
       
    19 
       
    20 /**
       
    21  @file
       
    22  @internalComponent 
       
    23 */
       
    24 
       
    25 #ifndef __ATSTD_H
       
    26 #define __ATSTD_H
       
    27 
       
    28 #include <e32std.h>
       
    29 
       
    30 #define KOneSecondPause	1000				// in milliseconds
       
    31 
       
    32 //	Expected modem responses
       
    33 _LIT8(KOKString,"\nOK\r\n");
       
    34 _LIT8(KErrorString,"\r\nERROR\r\n");
       
    35 
       
    36 // Panics
       
    37 enum THayesPanic
       
    38 	{
       
    39 	EATCommand_NotConstructed,
       
    40 	EATCommand_IllegalWaitCompletion,
       
    41 	EATCommand_IllegalCompletionWriteNotExpected,
       
    42 	EATCommand_IllegalCompletionWriteExpected,
       
    43 	EATCommand_IllegalCompletionReadNotExpected
       
    44 	};
       
    45 
       
    46 GLREF_C void HayesPanic(THayesPanic aPanicNumber);
       
    47 
       
    48 #endif