From 9340768f6c7dea7cb7fe348f6fdf52db75ce9d82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 23 Nov 2004 15:29:47 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r2300, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/iem16/; revision=2301 --- src/iem16_table.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/iem16_table.h (limited to 'src/iem16_table.h') diff --git a/src/iem16_table.h b/src/iem16_table.h new file mode 100644 index 0000000..4810312 --- /dev/null +++ b/src/iem16_table.h @@ -0,0 +1,27 @@ +/* copyleft (c) 2003 forum::für::umläute -- IOhannes m zmölnig @ IEM + * based on d_array.c from pd: + * Copyright (c) 1997-1999 Miller Puckette and others. + * For information on usage and redistribution, and for a DISCLAIMER OF ALL + * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ + +/* sampling */ + +#include "iem16.h" +#include +/* ------------------------- table16 -------------------------- */ +/* a 16bit table */ + +t_class *table16_class; +typedef struct _table16 { + t_object x_obj; + + t_symbol *x_tablename; + long x_size; + t_iem16_16bit *x_table; // hold the data + + int x_usedindsp; +} t_table16; + + +EXTERN int table16_getarray16(t_table16*x, int*size,t_iem16_16bit**vec); +EXTERN void table16_usedindsp(t_table16*x); -- cgit v1.2.1