diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-06-07 20:37:26 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-06-07 20:37:26 (GMT) |
commit | fd60ef760f6d2e1800d6ea0b34d2d8e238cee1d2 (patch) | |
tree | e639a60fa99d0af99c8c9f30f63cb2a7e3b5e79b /generic/tcl.h | |
parent | 39afde6df737407f9cf37c924c6f7cd43bf6ad32 (diff) | |
download | tcl-fd60ef760f6d2e1800d6ea0b34d2d8e238cee1d2.zip tcl-fd60ef760f6d2e1800d6ea0b34d2d8e238cee1d2.tar.gz tcl-fd60ef760f6d2e1800d6ea0b34d2d8e238cee1d2.tar.bz2 |
Stick to TCL_CHANNEL_VERSION_4; it's all in alpha anyway!
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 5bfd72b..040143a 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.200 2005/06/07 14:03:49 dkf Exp $ + * RCS: @(#) $Id: tcl.h,v 1.201 2005/06/07 20:37:40 dkf Exp $ */ #ifndef _TCL @@ -1461,7 +1461,6 @@ typedef void (Tcl_ScaleTimeProc) _ANSI_ARGS_ ((Tcl_Time* timebuf, ClientData cli #define TCL_CHANNEL_VERSION_2 ((Tcl_ChannelTypeVersion) 0x2) #define TCL_CHANNEL_VERSION_3 ((Tcl_ChannelTypeVersion) 0x3) #define TCL_CHANNEL_VERSION_4 ((Tcl_ChannelTypeVersion) 0x4) -#define TCL_CHANNEL_VERSION_5 ((Tcl_ChannelTypeVersion) 0x5) /* * TIP #218: Channel Actions, Ids for Tcl_DriverThreadActionProc @@ -1603,16 +1602,13 @@ typedef struct Tcl_ChannelType { /* * Only valid in TCL_CHANNEL_VERSION_4 channels or later * TIP #218, Channel Thread Actions + * TIP #208 (part relating to truncation) */ Tcl_DriverThreadActionProc *threadActionProc; /* Procedure to call to notify * the driver of thread specific * activity for a channel. * May be NULL. */ - /* - * Only valid TCL_CHANNEL_VERSION_5 channels or later - * TIP#208 (part relating to truncation) - */ Tcl_DriverTruncateProc *truncateProc; /* Procedure to call to truncate the * underlying file to a particular |