equal
deleted
inserted
replaced
|
1 // Copyright (c) 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 |
|
18 #ifndef __MMFAUDIOPOLICYSTART_H |
|
19 #define __MMFAUDIOPOLICYSTART_H |
|
20 |
|
21 #include <e32std.h> |
|
22 |
|
23 _LIT(KAudioPolicyServerName,"!MMFAudioPolicy"); |
|
24 const TInt KAudioPolicyServerStackSize=0x2000; // 8KB |
|
25 const TInt KAudioPolicyServerInitHeapSize=0x1000; // 4KB |
|
26 const TInt KAudioPolicyServerMaxHeapSize=0x1000000; // 16MB |
|
27 |
|
28 |
|
29 const TUint KMMFAudioPolicyVersion=8; |
|
30 const TUint KMMFAudioPolicyMinorVersionNumber=0; |
|
31 const TUint KMMFAudioPolicyBuildVersionNumber=1; |
|
32 |
|
33 |
|
34 class TServerStart |
|
35 /** |
|
36 *@internalTechnology |
|
37 */ |
|
38 { |
|
39 public: |
|
40 TServerStart(RServer2& aPolicyServerHandle); |
|
41 public: |
|
42 RServer2& iPolicyServerHandle; |
|
43 }; |
|
44 |
|
45 #include "MmfAudioPolicyStart.inl" |
|
46 #endif |
|
47 |