Get rid of struct id3tag and struct mp3info.
[paraslash.git] / ipc.h
diff --git a/ipc.h b/ipc.h
index 733cba6d83fd4b01e13ccf720013f56f9c2a3b3c..71e09ec1d1a7a21ea5a7fcab5bfb47835c70e464 100644 (file)
--- a/ipc.h
+++ b/ipc.h
@@ -1,5 +1,6 @@
 /** \file ipc.h inter process communication and shared memory routines */
 
+/** possible values for shm_attach() */
 enum shm_attach_mode {ATTACH_RO, ATTACH_RW};
 
 int mutex_new(void);
@@ -10,3 +11,7 @@ int shm_new(size_t size);
 int shm_attach(int id, enum shm_attach_mode mode, void **result);
 int shm_detach(void *addr);
 int shm_destroy(int id);
+
+#ifndef SHMMAX
+#define SHMMAX 65535
+#endif