sl@0
|
1 |
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
// Standard EPOC32 includes required by this header file
|
sl@0
|
17 |
#include <e32base.h>
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __TSI_MMFCODES_H__
|
sl@0
|
22 |
#define __TSI_MMFCODES_H__
|
sl@0
|
23 |
|
sl@0
|
24 |
// These are Codes which are passed to and from functions via the Controller Framework.
|
sl@0
|
25 |
|
sl@0
|
26 |
const TInt KGetAudioQuality = 1;
|
sl@0
|
27 |
const TInt KSetAudionQuality = 2;
|
sl@0
|
28 |
const TInt KDummyFunc1 = 3;
|
sl@0
|
29 |
const TInt KDummyFunc1Return = -4;
|
sl@0
|
30 |
const TInt KDummyFunc2 = 5;
|
sl@0
|
31 |
const TInt KDummyFunc2Return = -6;
|
sl@0
|
32 |
const TInt KLogFunction = 7;
|
sl@0
|
33 |
const TInt KFuncComplete = 0;
|
sl@0
|
34 |
const TInt KModeFunction = 8;
|
sl@0
|
35 |
|
sl@0
|
36 |
const TInt KHeapAddressFunction = 21;
|
sl@0
|
37 |
const TInt KThreadIdFunction = 22;
|
sl@0
|
38 |
const TInt KPluginUidFunction = 23;
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
//-----------------------------//
|
sl@0
|
43 |
// Leave Codes (Failure Tests) //
|
sl@0
|
44 |
//-----------------------------//
|
sl@0
|
45 |
|
sl@0
|
46 |
const TInt KOpenFailure = 201;
|
sl@0
|
47 |
const TInt KAddDataSourceFailure = 202;
|
sl@0
|
48 |
const TInt KAddDataSinkFailure = 203;
|
sl@0
|
49 |
const TInt KRemoveDataSourceFailure = 204;
|
sl@0
|
50 |
const TInt KRemoveDataSinkFailure = 205;
|
sl@0
|
51 |
const TInt KPrimeFailure = 206;
|
sl@0
|
52 |
const TInt KFailureCode1 = 210;
|
sl@0
|
53 |
const TInt KFailureCode2 = 211;
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
#endif // __TSI_MMFCODES_H__
|