diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2010-04-21 08:55:42 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2010-04-21 08:55:42 +0000 |
commit | e02c532c1dc25cd73f032fb42f05efa6cd0b0b39 (patch) | |
tree | 846d7dce0324799d713246df3bb25ce2af3a7d29 /src/OSC.c | |
parent | ada01549aef839cc80e580fc05055d7fb6ae4e6d (diff) |
added loads of "deprecated" notices
svn path=/trunk/externals/OSCx/; revision=13459
Diffstat (limited to 'src/OSC.c')
-rw-r--r-- | src/OSC.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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...");
}
|