Update contrib.
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 "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Common header file for all A3F DevSound Integration test steps to share macros, static functions,
15 // constants and enumerations.
19 #ifndef TSI_A3F_DEVSOUND_TESTSTEP_H
20 #define TSI_A3F_DEVSOUND_TESTSTEP_H
24 #include <testframework.h>
25 #include <mmf/server/sounddevice.h>
27 // STR_SWITCH... STR_CASE... STR_SWITCH_END macro can be used as switch case that would take string.
28 #define STR_SWITCH(str) {\
32 #define STR_SWITCH_END() break; } }
34 #define STR_CASE(str) if(__ps == str)
36 #define DEFAULT_CASE()
39 static void Panic(const TDesC &aCategory, TInt aReason)
41 User::Panic(aCategory, aReason);
44 // Constants declarations
45 const TInt KNameSize = 25;
46 const TInt KBufferLen = 256;
47 const TInt KMicroSecsInOneSec = 1000000;
48 const TInt KMicroSecsInTenSecs = 10000000;
49 const TInt KMicroSecsInOneMinute = 60000000;
50 const TInt KFrequency1 = 100;
51 const TInt KFrequency2 = 200;
52 const TInt KNULLVolume = 0;
53 const TInt KNULLSamples = 0;
56 enum TDevSoundPlayState
59 EStatePlayInitializing,
65 enum TDevSoundPlayEvents
68 EEventInitCompletePlay,
70 EEventPlayTimerComplete,
78 EFsmIncorrectErrorPassed,
82 #endif // TSI_A3F_DEVSOUND_TESTSTEP_H