aboutsummaryrefslogtreecommitdiff
path: root/src/oreceive.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-07-23 11:47:41 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-07-23 11:47:41 +0000
commit14a08e3d8a694b7fb718717130d4ff69d14243fb (patch)
tree00d12eda1e446ea0d94dc5ce5c2e1cebfa3b760a /src/oreceive.c
parent375a3141c6153cf1f6a0e3102ea919c3d6292dd6 (diff)
fixed rename of canvasconnections;;
added boilerplate to oreceive svn path=/trunk/externals/iem/iemguts/; revision=10212
Diffstat (limited to 'src/oreceive.c')
-rw-r--r--src/oreceive.c26
1 files changed, 24 insertions, 2 deletions
diff --git a/src/oreceive.c b/src/oreceive.c
index 13f2102..5109f4b 100644
--- a/src/oreceive.c
+++ b/src/oreceive.c
@@ -1,4 +1,22 @@
+/******************************************************
+ *
+ * oreceive - implementation file
+ *
+ * copyleft (c) IOhannes m zmölnig
+ *
+ * 2307:forum::für::umläute:2008
+ *
+ * institute of electronic music and acoustics (iem)
+ * unsiversity of music and dramatic arts graz (kug)
+ *
+ ******************************************************
+ *
+ * license: GNU General Public License v.2
+ *
+ ******************************************************/
+
+
#include "m_pd.h"
#if 0
@@ -11,7 +29,12 @@ static t_class *oreceive_class, *oreceive_proxy_class, *oreceive_guts_class;
/* ------------------------------------------------------------- */
-/* there come the guts: our own bind/unbind mechanism that
+
+/*
+ * [oreceive] : ordered receive
+ *
+ *
+ * there come the guts: our own bind/unbind mechanism that
* includes priorities
*
* the plan is as follows:
@@ -249,7 +272,6 @@ static void *oreceive_new(t_symbol *s, t_float priority)
x->x_sym = s;
x->x_priority = priority;
pd_bind_priority(&x->x_obj.ob_pd, s, priority);
- // pd_bind(&x->x_obj.ob_pd, s);
outlet_new(&x->x_obj, 0);
return (x);
}