os/mm/devsound/devsoundrefplugin/src/platsec/server/AudioServer/MmfDevSoundServerStart.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundrefplugin/src/platsec/server/AudioServer/MmfDevSoundServerStart.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,51 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +
1.20 +
1.21 +#ifndef __MMFDEVSOUNDSERVERSTART_H
1.22 +#define __MMFDEVSOUNDSERVERSTART_H
1.23 +
1.24 +#include <e32std.h>
1.25 +#include "MmfAudioServer.h"
1.26 +
1.27 +
1.28 +_LIT(KDevSoundServerName,"!MMFDevSndSvr");
1.29 +const TInt KDevSoundServerStackSize=0x2000; // 8KB
1.30 +const TInt KDevSoundServerInitHeapSize=0x1000; // 4KB
1.31 +const TInt KDevSoundServerMaxHeapSize=0x1000000; // 16MB
1.32 +
1.33 +const TUint KMMFDevSoundServerVersion=8;
1.34 +const TUint KMMFDevSoundServerMinorVersionNumber=0;
1.35 +const TUint KMMFDevSoundServerBuildVersionNumber=1;
1.36 +
1.37 +
1.38 +class TDevSoundServerStart
1.39 +/**
1.40 +*@internalTechnology
1.41 +*/
1.42 + {
1.43 +public:
1.44 + TDevSoundServerStart(CMMFAudioServer* aAudioServer, const TProcessId& aProcessId, RServer2& aDevSoundServerHandle);
1.45 +
1.46 +public:
1.47 + TProcessId iProcessId;
1.48 + CMMFAudioServer* iAudioServer;
1.49 + RServer2& iDevSoundServerHandle;
1.50 + };
1.51 +
1.52 +#include "MmfDevSoundServerStart.inl"
1.53 +
1.54 +#endif