os/mm/devsound/sounddevbt/PlatSec/src/Server/AudioServer/MmfBtDevSoundServerStart.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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 __MMFBTDEVSOUNDSERVERSTART_H
    19 #define __MMFBTDEVSOUNDSERVERSTART_H
    20 
    21 #include <e32std.h>
    22 #include "MmfBtAudioServer.h"
    23 
    24 
    25 _LIT(KDevSoundServerName,"!MMFDevSndSvr");
    26 const TInt KDevSoundServerStackSize=0x2000;			//  8KB
    27 const TInt KDevSoundServerInitHeapSize=0x1000;		//  4KB
    28 const TInt KDevSoundServerMaxHeapSize=0x1000000;		// 16MB
    29 
    30 const TUint KMMFDevSoundServerVersion=8;
    31 const TUint KMMFDevSoundServerMinorVersionNumber=0;
    32 const TUint KMMFDevSoundServerBuildVersionNumber=1;
    33 
    34 
    35 class TDevSoundServerStart
    36 /**
    37 *@internalTechnology
    38 */
    39 	{
    40 public:
    41 	TDevSoundServerStart(CMMFAudioServer* aAudioServer, const TProcessId& aProcessId);
    42 	TDevSoundServerStart();
    43 	
    44 public:
    45 	TProcessId iProcessId;
    46 	CMMFAudioServer* iAudioServer;
    47 	};
    48 
    49 #include "MmfBtDevSoundServerStart.inl"
    50 
    51 #endif