diff -r e71858845f73 -r e1758cbb96ac audiostubs/devsoundextensions_stubs/addeddevsoundcontrolcistub/inc/AddedDevSoundControlCIStub.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audiostubs/devsoundextensions_stubs/addeddevsoundcontrolcistub/inc/AddedDevSoundControlCIStub.h Mon Oct 04 00:04:35 2010 +0300 @@ -0,0 +1,107 @@ +/* +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Audio Stubs - Custom Interface for AddedDevSoundControl. +* +*/ + + +#ifndef ADDEDDEVSOUNDCONTROLCI_H +#define ADDEDDEVSOUNDCONTROLCI_H + +// INCLUDES +#include +#include + +// CONSTANTS + +// MACROS + +// DATA TYPES + +// FUNCTION PROTOTYPES + +// FORWARD DECLARATIONS + +// CLASS DECLARATION + +/** +* Custom Interface for AddedDevSoundControl. +* +* @lib AddedDevSoundControlCIStub.lib +* @since S60 3.2 +*/ +class CAddedDevSoundControlCI : public CBase, + public MAddedDevSoundControl + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + IMPORT_C static CAddedDevSoundControlCI* NewL(); + + /** + * Destructor. + */ + IMPORT_C virtual ~CAddedDevSoundControlCI(); + + public: // New functions + + public: // Functions from MAddedDevSoundControl + + /** + * Sets HW awareness for Pause. + * + * @since S60 3.2 + * @param TBool - Toggles HW awareness + * @return TInt - + */ + IMPORT_C virtual TInt SetHwAwareness(TBool aHwAware); + + /** + * Pauses audio playback and flushes buffers. + * + * @since S60 3.2 + * @return TInt - Status + */ + IMPORT_C virtual TInt PauseAndFlush(); + + + protected: // New functions + + protected: // Functions from base classes + + private: + + /** + * C++ default constructor. + */ + CAddedDevSoundControlCI(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + + public: // Data + protected: // Data + private: // Data + + TBool iHwAware; + + }; + +#endif // ADDEDDEVSOUNDCONTROLCI_H + +// End of File