aboutsummaryrefslogtreecommitdiff
path: root/src/OSC.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-04-21 08:55:42 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-04-21 08:55:42 +0000
commite02c532c1dc25cd73f032fb42f05efa6cd0b0b39 (patch)
tree846d7dce0324799d713246df3bb25ce2af3a7d29 /src/OSC.c
parentada01549aef839cc80e580fc05055d7fb6ae4e6d (diff)
added loads of "deprecated" notices
svn path=/trunk/externals/OSCx/; revision=13459
Diffstat (limited to 'src/OSC.c')
-rw-r--r--src/OSC.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/OSC.c b/src/OSC.c
index 70bf84a..923c097 100644
--- a/src/OSC.c
+++ b/src/OSC.c
@@ -41,6 +41,7 @@ static t_class* OSC_class;
static void* OSC_new(t_symbol* s) {
t_OSC *x = (t_OSC *)pd_new(OSC_class);
+ error("OSCx is deprecated! consider switching to mrpeach's osc & net objects");
return (x);
}
@@ -66,4 +67,6 @@ OSC_API void OSC_setup(void) {
post("O : Open Sound Control 4 PD, http://www.cnmat.berkeley.edu/OSC");
post(" S : original code by matt wright, pd hakcs cxc, Win32-port raf@interaccess.com");
post(" C: ver: "VERSION ", compiled: "__DATE__ " -- adapted by piotr@majdak.com");
+
+ error("OSCx is deprecated - ask IOhannes m zmoelnig why...");
}