aboutsummaryrefslogtreecommitdiff
path: root/nusmuk_utils/pbank.h
diff options
context:
space:
mode:
Diffstat (limited to 'nusmuk_utils/pbank.h')
-rw-r--r--nusmuk_utils/pbank.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/nusmuk_utils/pbank.h b/nusmuk_utils/pbank.h
new file mode 100644
index 0000000..7bd1f44
--- /dev/null
+++ b/nusmuk_utils/pbank.h
@@ -0,0 +1,14 @@
+
+
+
+typedef struct shared
+{
+ t_symbol *s_sym; /* shared memory name */
+ t_atom **s_data; /* memory pointer */
+ int s_rows; /* memory dimension */
+ int s_columns; /* memory dimension */
+ int s_refcount; /* number of objects pointing to "s_data" */
+ struct shared *s_next;
+} t_shared;
+
+