aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Koch <kpkoch@mit.edu>2007-10-31 17:16:56 +0000
committerKevin Koch <kpkoch@mit.edu>2007-10-31 17:16:56 +0000
commit3f3ceb8cc3f6ca0e62dac213e3fa2a79b8c05ebe (patch)
treeece029d1d6bb8e040b1186240a67c25d7a610ba9
parent99e64ffc0b849eab304e0424994c144c26833841 (diff)
downloadkrb5-3f3ceb8cc3f6ca0e62dac213e3fa2a79b8c05ebe.zip
krb5-3f3ceb8cc3f6ca0e62dac213e3fa2a79b8c05ebe.tar.gz
krb5-3f3ceb8cc3f6ca0e62dac213e3fa2a79b8c05ebe.tar.bz2
On Windows, disable a pragma warning; add comment about what a pipe is
TargetVersion: 1.7 Component: krb5-libs Ticket: 5594 Subj: Work on compiling the CCAPI test suite on Windows. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20160 dc483132-0cff-0310-8789-dd5450dbe970
-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 46767f0..1c0870b 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