commit 375ead169d33210a0e3088f410f93bdcece8c99d
parent 2ffc29a48c5eef017b0bbdc592f27ca226d6e84d
Author: LRN <lrn1986@gmail.com>
Date: Sun, 22 Jul 2012 21:36:08 +0000
Towards making LE compile on W32 again
Diffstat:
3 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/src/main/extractor_ipc.h b/src/main/extractor_ipc.h
@@ -35,6 +35,10 @@
*/
#define MAX_META_DATA 32 * 1024 * 1024
+/**
+ * Maximum length of a shared memory object name
+ */
+#define MAX_SHM_NAME 255
/**
* Sent from LE to a plugin to initialize it (open shm,
diff --git a/src/main/extractor_ipc_gnu.c b/src/main/extractor_ipc_gnu.c
@@ -36,12 +36,6 @@
/**
- * Maximum length of a shared memory object name
- */
-#define MAX_SHM_NAME 255
-
-
-/**
* A shared memory resource (often shared with several
* other processes).
*/
diff --git a/src/main/extractor_ipc_w32.c b/src/main/extractor_ipc_w32.c
@@ -18,6 +18,12 @@
Boston, MA 02111-1307, USA.
*/
+#include "platform.h"
+#include "plibc.h"
+#include "extractor.h"
+#include "extractor_datasource.h"
+#include "extractor_plugin_main.h"
+#include "extractor_ipc.h"
/**
*/