aboutsummaryrefslogtreecommitdiff
path: root/iemnet_data.h
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-03-30 07:36:07 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-03-30 07:36:07 +0000
commit806df1c7645fdcfc945fb9e1467ea7aaada2b903 (patch)
tree0293221367f241b09da41ffaaedc3060ab52cdfb /iemnet_data.h
parent3b0519565763342e77515975173b681fa7171ee5 (diff)
split core library into separate files
svn path=/trunk/externals/iem/iemnet/; revision=13310
Diffstat (limited to 'iemnet_data.h')
-rw-r--r--iemnet_data.h44
1 files changed, 44 insertions, 0 deletions
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;
+