/* OpenSoundControl for PD ------------- -- init jdl at xdv dot org -- tweaks for Win32 www.zeggz.com/raf 13-April-2002 -- smoothed out build, clean up for Darwin 2004.04.04 -- shoutz: miller and the others -- Windows-ification by Piotr Majdak 30.08.2005 */ #if HAVE_CONFIG_H #include #endif #include #include "OSC-common.h" #define VERSION "0.3.1" /* this is for when building with non-Microsoft compilers */ #ifndef OSC_API #define OSC_API #endif typedef struct _OSC { t_object x_obj; } t_OSC; OSC_API void OSC_setup(void); OSC_API void OSC_version(t_OSC*); static t_class* OSC_class; static void* OSC_new(t_symbol* s) { t_OSC *x = (t_OSC *)pd_new(OSC_class); return (x); } OSC_API void OSC_version (t_OSC *x) { post("OSC4PD Version " VERSION "\n" " Original code by matt wright. pd-fication jdl@xdv.org\n" " Win32-port raf@interaccess.com unified versions hans@at.or.at\n" " Adaptations for Windows: piotr@majdak.com\n" " Compiled: "__DATE__); } OSC_API void OSC_setup(void) { OSC_class = class_new(gensym("OSC"), (t_newmethod)OSC_new, 0, sizeof(t_OSC), 0,0); class_addmethod(OSC_class, (t_method)OSC_version, gensym("version"), A_NULL, 0, 0); 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"); logpost(NULL, 3, "OSCx is deprecated! consider switching to mrpeach's osc & net objects"); }