From 3f3ceb8cc3f6ca0e62dac213e3fa2a79b8c05ebe Mon Sep 17 00:00:00 2001 From: Kevin Koch Date: Wed, 31 Oct 2007 17:16:56 +0000 Subject: [PATCH] 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 --- src/ccapi/server/ccs_types.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.26.2