devsound/a3fdevsound/src/mmfdevsoundproxy/mmfdevsoundproxy.cpp
changeset 6 fe9d1bf55678
parent 0 b8ed18f6c07b
--- a/devsound/a3fdevsound/src/mmfdevsoundproxy/mmfdevsoundproxy.cpp	Tue Nov 02 12:13:59 2010 +0000
+++ b/devsound/a3fdevsound/src/mmfdevsoundproxy/mmfdevsoundproxy.cpp	Tue Nov 02 12:28:51 2010 +0000
@@ -856,33 +856,6 @@
 	}
 
 // -----------------------------------------------------------------------------
-// RMMFDevSoundProxy::PlayFixedSequenceL
-// Plays the fixed sequence.
-// (other items were commented in a header).
-// -----------------------------------------------------------------------------
-//
-EXPORT_C void RMMFDevSoundProxy::PlayFixedSequenceL(TInt aSequenceNumber)
-	{
-	SYMBIAN_DEBPRN0(_L("RMMFDevSoundProxy[0x%x]::PlayFixedSequenceL - Enter"));
-	if(iState==ETonePlaying)
-		{
-		SYMBIAN_DEBPRN0(_L("RMMFDevSoundProxy[0x%x]::PlayFixedSequenceL - Exit"));
-		return;
-		}
-			
-	if (!iDevSoundObserver || iState!=EInitialized)
-		{
-		User::Leave(KErrNotReady);
-		}
-
-	TPckgBuf<TInt> seqNum(aSequenceNumber);
-	User::LeaveIfError(SendReceive(EMMFDevSoundProxyPlayFixedSequence, iDestinationPckg, seqNum));
-	iState = ETonePlaying;
-	iToneMode = EFixedSequence;
-	SYMBIAN_DEBPRN0(_L("RMMFDevSoundProxy[0x%x]::PlayFixedSequenceL - Exit"));
-	}
-
-// -----------------------------------------------------------------------------
 // RMMFDevSoundProxy::SetDTMFLengths
 // Set attributes for playing DTMF String.
 // (other items were commented in a header).
@@ -1102,20 +1075,6 @@
 	}
 
 // -----------------------------------------------------------------------------
-// RMMFDevSoundProxy::FixedSequenceName
-// Returns the name of fixed sequence for a given sequence number.
-// (other items were commented in a header).
-// -----------------------------------------------------------------------------
-//
-EXPORT_C const TDesC& RMMFDevSoundProxy::FixedSequenceName(TInt /*aSequenceNumber*/)
-	{
-	SYMBIAN_DEBPRN0(_L("RMMFDevSoundProxy[0x%x]::FixedSequenceName - Enter"));
-	_LIT(KNullDesC, "");
-	SYMBIAN_DEBPRN0(_L("RMMFDevSoundProxy[0x%x]::FixedSequenceName - Exit"));
-	return KNullDesC;
-	}
-
-// -----------------------------------------------------------------------------
 // RMMFDevSoundProxy::CustomInterface
 // Returns a pointer to CustomInterface object.
 // (other items were commented in a header).
@@ -1145,25 +1104,6 @@
 	}
 	
 // -----------------------------------------------------------------------------
-// RMMFDevSoundProxy::FixedSequenceCount
-// Returns the number of fixed sequences supported by DevSound.
-// (other items were commented in a header).
-// -----------------------------------------------------------------------------
-//
-EXPORT_C TInt RMMFDevSoundProxy::FixedSequenceCount()
-	{
-	SYMBIAN_DEBPRN0(_L("RMMFDevSoundProxy[0x%x]::FixedSequenceCount - Enter"));
-	TPckgBuf<TInt> fixSeqCountPckg;
-	SendReceiveResult(EMMFDevSoundProxyFixedSequenceCount,
-					iDestinationPckg,
-					KNullDesC8,
-					fixSeqCountPckg);
-
-	SYMBIAN_DEBPRN0(_L("RMMFDevSoundProxy[0x%x]::FixedSequenceCount - Exit"));
-	return fixSeqCountPckg();
-	}
-
-// -----------------------------------------------------------------------------
 // RMMFDevSoundProxy::BufferToBeFilledData
 // Returns data buffer for playback.
 // -----------------------------------------------------------------------------