aboutsummaryrefslogtreecommitdiff
path: root/n2m.h
diff options
context:
space:
mode:
Diffstat (limited to 'n2m.h')
-rw-r--r--n2m.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/n2m.h b/n2m.h
new file mode 100644
index 0000000..55e3cd0
--- /dev/null
+++ b/n2m.h
@@ -0,0 +1,15 @@
+
+typedef struct _n2m
+{
+ t_object x_obj;
+ t_float x_err;
+} t_n2m;
+
+static void *n2m_new( t_float t );
+static void n2m_set_err( t_n2m *x, t_float f );
+static void n2m_float( t_n2m *x, t_float f );
+static void n2m_free(t_n2m *x);
+static void splitsym( char* buf , char* note, int* octave );
+static int midilookup( char* note , int octave );
+
+