diff options
author | hobbs <hobbs> | 2000-07-27 00:38:57 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-07-27 00:38:57 (GMT) |
commit | b27e37f784171db26b94f83d4ad68392351dace3 (patch) | |
tree | 00fd51cdc5570a90cae89c19a33351a1d2809754 /generic/tclStubInit.c | |
parent | 619ab717f62b2d18deaf53f5351340223d855dc7 (diff) | |
download | tcl-core_8_3_1_io_rewrite.zip tcl-core_8_3_1_io_rewrite.tar.gz tcl-core_8_3_1_io_rewrite.tar.bz2 |
* generic/tclStubInit.c:
merge_8_3_1_io_rewrite_07_26_00core_8_3_1_io_rewrite
* generic/tclDecls.h:
* generic/tcl.decls:
* generic/tcl.h:
* generic/tclIO.c: moved the Tcl_Channel* macros from tcl.h to
tclIO.c and made them proper stubbed functions. These are:
Tcl_ChannelName, Tcl_ChannelVersion, Tcl_ChannelBlockModeProc,
Tcl_ChannelCloseProc, Tcl_ChannelClose2Proc, Tcl_ChannelInputProc,
Tcl_ChannelOutputProc, Tcl_ChannelSeekProc, Tcl_ChannelSetOptionProc,
Tcl_ChannelGetOptionProc, Tcl_ChannelWatchProc,
Tcl_ChannelGetHandleProc, Tcl_ChannelFlushProc,
and Tcl_ChannelHandlerProc. These should be used to access the
Tcl_ChannelType structure instead of direct pointer dereferencing.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 3dc72df..ccf7451 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.35.4.4 2000/07/25 16:54:52 kupries Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.35.4.5 2000/07/27 00:39:03 hobbs Exp $ */ #include "tclInt.h" @@ -797,6 +797,20 @@ TclStubs tclStubs = { Tcl_WriteRaw, /* 395 */ Tcl_GetTopChannel, /* 396 */ Tcl_ChannelBuffered, /* 397 */ + Tcl_ChannelName, /* 398 */ + Tcl_ChannelVersion, /* 399 */ + Tcl_ChannelBlockModeProc, /* 400 */ + Tcl_ChannelCloseProc, /* 401 */ + Tcl_ChannelClose2Proc, /* 402 */ + Tcl_ChannelInputProc, /* 403 */ + Tcl_ChannelOutputProc, /* 404 */ + Tcl_ChannelSeekProc, /* 405 */ + Tcl_ChannelSetOptionProc, /* 406 */ + Tcl_ChannelGetOptionProc, /* 407 */ + Tcl_ChannelWatchProc, /* 408 */ + Tcl_ChannelGetHandleProc, /* 409 */ + Tcl_ChannelFlushProc, /* 410 */ + Tcl_ChannelHandlerProc, /* 411 */ }; /* !END!: Do not edit above this line. */ |