diff options
Diffstat (limited to 'd_global13.h')
-rw-r--r-- | d_global13.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/d_global13.h b/d_global13.h new file mode 100644 index 0000000..f10077d --- /dev/null +++ b/d_global13.h @@ -0,0 +1,40 @@ +t_class *sigsend13_class; +t_class *sigthrow13_class; +t_class *sigreceive13_class; +t_class *sigcatch13_class; + +typedef struct _sigsend13 +{ + t_object x_obj; + t_symbol *x_sym; + int x_n; + float *x_vec; +} t_sigsend13; + + +typedef struct _sigreceive13 +{ + t_object x_obj; + t_symbol *x_sym; + t_float *x_wherefrom; + int x_n; +} t_sigreceive13; + + +typedef struct _sigcatch13 +{ + t_object x_obj; + t_symbol *x_sym; + int x_n; + float *x_vec; +} t_sigcatch13; + + +typedef struct _sigthrow13 +{ + t_object x_obj; + t_symbol *x_sym; + t_float *x_whereto; + int x_n; +} t_sigthrow13; + |