From 71bc89ed452de3b5aa6356087280554e58ae4456 Mon Sep 17 00:00:00 2001 From: Kevin Koch Date: Tue, 22 Jan 2008 16:34:31 +0000 Subject: Make windows debug message line endings match the Mac endings. Windows needs k5-platform helper function declared explicitly. Change definition of ccs_pipe_t for windows. #define strdup -- it's now deprecated on windows. TargetVersion: 1.7 Component: krb5-libs Ticket: 5594 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20201 dc483132-0cff-0310-8789-dd5450dbe970 --- src/ccapi/server/ccs_types.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/ccapi/server') diff --git a/src/ccapi/server/ccs_types.h b/src/ccapi/server/ccs_types.h index 56056b99e..a1e65a251 100644 --- a/src/ccapi/server/ccs_types.h +++ b/src/ccapi/server/ccs_types.h @@ -57,9 +57,10 @@ 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 +/* On Windows, a pipe is s struct: */ +#include "ccs_win_pipe.h" +typedef struct ccs_win_pipe_t* ccs_pipe_t; +#define CCS_PIPE_NULL (ccs_pipe_t)NULL #else typedef int ccs_pipe_t; /* Unix domain socket */ @@ -67,6 +68,7 @@ typedef int ccs_pipe_t; /* Unix domain socket */ #endif #endif + #ifdef TARGET_OS_MAC #pragma mark - #endif -- cgit