From bc45bf25b45be1d26e66a84fe2a2787bb9fe1dfc Mon Sep 17 00:00:00 2001 From: markheath Date: Fri, 12 Dec 2008 22:52:09 +0000 Subject: [PATCH] oops last checkin broke build. Adding ISampleNotifier but this is strictly WIP at the moment --- NAudio/Wave/WaveStreams/ISampleNotifier.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 NAudio/Wave/WaveStreams/ISampleNotifier.cs diff --git a/NAudio/Wave/WaveStreams/ISampleNotifier.cs b/NAudio/Wave/WaveStreams/ISampleNotifier.cs new file mode 100644 index 0000000..84df0ea --- /dev/null +++ b/NAudio/Wave/WaveStreams/ISampleNotifier.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace NAudio.Wave +{ + public class ISampleNotifier + { + public event EventHandler Block; + public event EventHandler Sample; + } + + public class SampleEventArgs : EventArgs + { + public float left; + public float right; + } +}