Update contrib.
1 // Copyright (c) 2003-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.
16 #ifndef __MDAHWINFO_H__
17 #define __MDAHWINFO_H__
21 #ifdef SYMBIAN_MDF_SHAREDCHUNK_SOUNDDRIVER
22 #include "mdasoundadapter.h"
27 class CMdaHwInfo : public CBase
31 static CMdaHwInfo* NewL();
33 inline RMdaDevSound::TSoundFormatsSupportedBuf& GetPlayFormatsSupported() {return iPlayFormatsSupported;}
34 inline RMdaDevSound::TCurrentSoundFormatBuf& GetPlayFormat() {return iPlayFormat;}
35 inline RMdaDevSound::TSoundFormatsSupportedBuf& GetRecordFormatsSupported() { return iRecordFormatsSupported;}
36 inline RMdaDevSound::TCurrentSoundFormatBuf& GetRecordFormat() { return iRecordFormat;}
44 RMdaDevSound::TSoundFormatsSupportedBuf iPlayFormatsSupported;
45 RMdaDevSound::TCurrentSoundFormatBuf iPlayFormat;
46 RMdaDevSound::TSoundFormatsSupportedBuf iRecordFormatsSupported;
47 RMdaDevSound::TCurrentSoundFormatBuf iRecordFormat;