From 680fe2637842731e3d28cbbc47349a32faee374b Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 8 Oct 2012 01:06:18 +0000 Subject: deleting botched copies/tags svn path=/trunk/; revision=16360 --- .../extra/0.43.3/0.43.2/stdout/stdout-help.pd | 19 -------- externals/extra/0.43.3/0.43.2/stdout/stdout.c | 50 ---------------------- 2 files changed, 69 deletions(-) delete mode 100644 externals/extra/0.43.3/0.43.2/stdout/stdout-help.pd delete mode 100644 externals/extra/0.43.3/0.43.2/stdout/stdout.c (limited to 'externals/extra/0.43.3/0.43.2/stdout') diff --git a/externals/extra/0.43.3/0.43.2/stdout/stdout-help.pd b/externals/extra/0.43.3/0.43.2/stdout/stdout-help.pd deleted file mode 100644 index 91edbc41..00000000 --- a/externals/extra/0.43.3/0.43.2/stdout/stdout-help.pd +++ /dev/null @@ -1,19 +0,0 @@ -#N canvas 121 60 488 321 12; -#X msg 126 203 walk the dog; -#X msg 117 156 1; -#X obj 117 240 stdout; -#X text 269 287 updated for Pd version 0.42; -#X obj 14 13 stdout; -#X text 67 14 - write messages to standard output; -#X msg 122 179 1 2; -#X obj 119 291 pd~; -#X text 44 291 see also:; -#X text 34 39 Sends messages to Pd's standard output. This is useful -in conjunction with the pd~ object \, which starts a pd sub-process. -Messages sent to the sub-process standard output appear on the output -of the pd~ object in the owning process. This might also be useful -in other situations. Note that there's no corresponding "stdin" object -- there seems to be no one canonical way such a thing should act.; -#X connect 0 0 2 0; -#X connect 1 0 2 0; -#X connect 6 0 2 0; diff --git a/externals/extra/0.43.3/0.43.2/stdout/stdout.c b/externals/extra/0.43.3/0.43.2/stdout/stdout.c deleted file mode 100644 index 5cd52f25..00000000 --- a/externals/extra/0.43.3/0.43.2/stdout/stdout.c +++ /dev/null @@ -1,50 +0,0 @@ -/* stdout -- write messages to standard output. - - Copyright 2008 Miller Puckette - BSD license; see README.txt in this distribution for details. -*/ - -#include "m_pd.h" -#include -#include -static t_class *stdout_class; - -typedef struct _stdout -{ - t_object x_obj; -} t_stdout; - -static void *stdout_new(t_float fnonrepeat) -{ - t_stdout *x = (t_stdout *)pd_new(stdout_class); - return (x); -} - -static void stdout_anything(t_stdout *x, t_symbol *s, int argc, t_atom *argv) -{ - char msgbuf[MAXPDSTRING], *sp, *ep = msgbuf+MAXPDSTRING; - msgbuf[0] = 0; - strncpy(msgbuf, s->s_name, MAXPDSTRING); - msgbuf[MAXPDSTRING-1] = 0; - sp = msgbuf + strlen(msgbuf); - while (argc--) - { - if (sp < ep-1) - sp[0] = ' ', sp[1] = 0, sp++; - atom_string(argv++, sp, ep-sp); - sp += strlen(sp); - } - printf("%s;\n", msgbuf); -} - -static void stdout_free(t_stdout *x) -{ - fflush(stdout); -} - -void stdout_setup(void) -{ - stdout_class = class_new(gensym("stdout"), (t_newmethod)stdout_new, - (t_method)stdout_free, sizeof(t_stdout), 0, 0); - class_addanything(stdout_class, stdout_anything); -} -- cgit v1.2.1