www.pudn.com > waveindemo.rar > IWaveControl.cs


using System; 
 
namespace WaveLib 
{ 
	public delegate void ErrorEventHandle(Exception e,string error); 
	///  
	/// IWaveControl µÄժҪ˵Ã÷¡£ 
	///  
	public interface IWaveControl : IWaveRecordInfo 
	{ 
		void Stop(); 
		void Start(); 
		void Suspend(); 
		void Continue(); 
		event ErrorEventHandle ErrorEvent; 
	} 
}