diff options
author | vincentdarley <vincentdarley> | 2002-07-18 15:06:54 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-07-18 15:06:54 (GMT) |
commit | 48c1f1f624f1e8a2956e0dca4270bf1317fb7dce (patch) | |
tree | dab3e7f961d4b76c27dde6ac92c62e9cbe7bcd8c /generic | |
parent | b355103baab13c260a35798a589f4357f9fd115a (diff) | |
download | tcl-48c1f1f624f1e8a2956e0dca4270bf1317fb7dce.zip tcl-48c1f1f624f1e8a2956e0dca4270bf1317fb7dce.tar.gz tcl-48c1f1f624f1e8a2956e0dca4270bf1317fb7dce.tar.bz2 |
load comments and clientData replacement
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tcl.h | 4 | ||||
-rw-r--r-- | generic/tclInt.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 4e67efa..2995ed1 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,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.133 2002/07/18 15:04:53 vincentdarley Exp $ + * RCS: @(#) $Id: tcl.h,v 1.134 2002/07/18 15:06:54 vincentdarley Exp $ */ #ifndef _TCL @@ -459,7 +459,7 @@ typedef struct Tcl_TimerToken_ *Tcl_TimerToken; typedef struct Tcl_Trace_ *Tcl_Trace; typedef struct Tcl_Var_ *Tcl_Var; typedef struct Tcl_ChannelTypeVersion_ *Tcl_ChannelTypeVersion; - +typedef struct TclLoadHandle_ *TclLoadHandle; /* * Definition of the interface to procedures implementing threads. diff --git a/generic/tclInt.h b/generic/tclInt.h index 9960e16..8f67d45 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.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: tclInt.h,v 1.103 2002/07/18 15:04:53 vincentdarley Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.104 2002/07/18 15:06:54 vincentdarley Exp $ */ #ifndef _TCLINT @@ -1564,7 +1564,6 @@ typedef struct TclFile_ *TclFile; */ typedef struct TclpTime_t_ *TclpTime_t; -typedef struct TclLoadHandle_ *TclLoadHandle; /* * The "globParameters" argument of the function TclGlob is an |