From 507fd28603cd1ee621f47d63a5861b286d4013a9 Mon Sep 17 00:00:00 2001 From: davygrvy Date: Wed, 5 Sep 2001 03:12:03 +0000 Subject: * generic/tcl.h: Borland compatibility change so ClientData was properly typed as a void* --- generic/tcl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generic/tcl.h b/generic/tcl.h index 46ef74d..d210a6d 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.98 2001/09/04 18:06:34 vincentdarley Exp $ + * RCS: @(#) $Id: tcl.h,v 1.99 2001/09/05 03:12:03 davygrvy Exp $ */ #ifndef _TCL @@ -330,7 +330,7 @@ typedef long LONG; #endif #ifndef _CLIENTDATA -# if defined(__STDC__) || defined(__cplusplus) +# if defined(__STDC__) || defined(__cplusplus) || defined(__BORLANDC__) typedef void *ClientData; # else typedef int *ClientData; -- cgit v0.12