summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ccapi/server/ccs_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ccapi/server/ccs_types.h b/src/ccapi/server/ccs_types.h
index 46767f02d..1c0870bf0 100644
--- a/src/ccapi/server/ccs_types.h
+++ b/src/ccapi/server/ccs_types.h
@@ -27,6 +27,10 @@
#ifndef CCS_TYPES_H
#define CCS_TYPES_H
+#ifdef WIN32
+#pragma warning ( disable : 4068)
+#endif
+
#include "cci_types.h"
struct cci_array_d;
@@ -51,6 +55,7 @@ typedef mach_port_t ccs_pipe_t; /* Mach IPC port */
#else
#ifdef WIN32
+/* On Windows, a pipe is the name of the endpoint to which to send the reply: */
typedef char* ccs_pipe_t;
#define CCS_PIPE_NULL (char*)NULL