From 1baf1d957e195290cfd59089767ca63a547a9917 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 7 Apr 2004 14:32:29 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r1560, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/mjlib/; revision=1561 --- prob.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 prob.h (limited to 'prob.h') diff --git a/prob.h b/prob.h new file mode 100644 index 0000000..8781ab3 --- /dev/null +++ b/prob.h @@ -0,0 +1,18 @@ + +typedef struct _prob +{ + t_object x_obj; + t_clock *x_clock; + t_float x_time; + t_float x_probability; + t_float x_running; +} t_prob; + +static void prob_tick(t_prob *x); +static void prob_start(t_prob *x); +static void prob_stop(t_prob *x); +static void prob_free(t_prob *x); +static void *prob_new( t_float , t_float); +static void prob_set_time( t_prob *x, t_float f ); +static void prob_set_probability( t_prob *x, t_float f ); +static int prob_event(t_prob *x); -- cgit v1.2.1