From 806df1c7645fdcfc945fb9e1467ea7aaada2b903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 30 Mar 2010 07:36:07 +0000 Subject: split core library into separate files svn path=/trunk/externals/iem/iemnet/; revision=13310 --- iemnet_data.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 iemnet_data.h (limited to 'iemnet_data.h') diff --git a/iemnet_data.h b/iemnet_data.h new file mode 100644 index 0000000..60a625b --- /dev/null +++ b/iemnet_data.h @@ -0,0 +1,44 @@ +/* *********************************************+ + * iemnet + * networking for Pd + * + * (c) 2010 IOhannes m zmölnig + * Institute of Electronic Music and Acoustics (IEM) + * University of Music and Dramatic Arts (KUG), Graz, Austria + * + * data handling structures + * think of these as private, no need to worry about them outside the core lib + */ + +/* ---------------------------------------------------------------------------- */ + +/* This program is free software; you can redistribute it and/or */ +/* modify it under the terms of the GNU General Public License */ +/* as published by the Free Software Foundation; either version 2 */ +/* of the License, or (at your option) any later version. */ +/* */ +/* This program is distributed in the hope that it will be useful, */ +/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ +/* GNU General Public License for more details. */ +/* */ +/* You should have received a copy of the GNU General Public License */ +/* along with this program; if not, write to the Free Software */ +/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* */ + +/* ---------------------------------------------------------------------------- */ + + +typedef struct _iemnet_floatlist { + t_atom*argv; + size_t argc; + + size_t size; // real size (might be bigger than argc) +} t_iemnet_floatlist; + + + +#define t_iemnet_queue struct _iemnet_queue +EXTERN_STRUCT _iemnet_queue; + -- cgit v1.2.1