diff options
author | dgp <dgp@users.sourceforge.net> | 2005-06-07 02:07:23 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-06-07 02:07:23 (GMT) |
commit | 81f024440701bf5a0f22284bc4f90e3aa47017bf (patch) | |
tree | 6199ec14a702382a825b50fdc61f073b490448e6 /generic/tclDecls.h | |
parent | e9429305435f6edac06ba3dc914e5658705e160a (diff) | |
download | tcl-81f024440701bf5a0f22284bc4f90e3aa47017bf.zip tcl-81f024440701bf5a0f22284bc4f90e3aa47017bf.tar.gz tcl-81f024440701bf5a0f22284bc4f90e3aa47017bf.tar.bz2 |
make genstubs
Diffstat (limited to 'generic/tclDecls.h')
-rw-r--r-- | generic/tclDecls.h | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h index 7ab10d3..c410983 100644 --- a/generic/tclDecls.h +++ b/generic/tclDecls.h @@ -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: tclDecls.h,v 1.113 2005/05/10 18:34:28 kennykb Exp $ + * RCS: @(#) $Id: tclDecls.h,v 1.114 2005/06/07 02:07:24 dgp Exp $ */ #ifndef _TCLDECLS @@ -3484,6 +3484,18 @@ EXTERN void Tcl_SetBignumObj _ANSI_ARGS_((Tcl_Obj* obj, EXTERN int Tcl_GetBignumFromObj _ANSI_ARGS_((Tcl_Interp* interp, Tcl_Obj* obj, mp_int* value)); #endif +#ifndef Tcl_TruncateChannel_TCL_DECLARED +#define Tcl_TruncateChannel_TCL_DECLARED +/* 559 */ +EXTERN int Tcl_TruncateChannel _ANSI_ARGS_((Tcl_Channel chan, + Tcl_WideInt length)); +#endif +#ifndef Tcl_ChannelTruncateProc_TCL_DECLARED +#define Tcl_ChannelTruncateProc_TCL_DECLARED +/* 560 */ +EXTERN Tcl_DriverTruncateProc * Tcl_ChannelTruncateProc _ANSI_ARGS_(( + Tcl_ChannelType * chanTypePtr)); +#endif typedef struct TclStubHooks { struct TclPlatStubs *tclPlatStubs; @@ -4084,6 +4096,8 @@ typedef struct TclStubs { Tcl_Obj* (*tcl_DbNewBignumObj) _ANSI_ARGS_((mp_int* value, CONST char* file, int line)); /* 556 */ void (*tcl_SetBignumObj) _ANSI_ARGS_((Tcl_Obj* obj, mp_int* value)); /* 557 */ int (*tcl_GetBignumFromObj) _ANSI_ARGS_((Tcl_Interp* interp, Tcl_Obj* obj, mp_int* value)); /* 558 */ + int (*tcl_TruncateChannel) _ANSI_ARGS_((Tcl_Channel chan, Tcl_WideInt length)); /* 559 */ + Tcl_DriverTruncateProc * (*tcl_ChannelTruncateProc) _ANSI_ARGS_((Tcl_ChannelType * chanTypePtr)); /* 560 */ } TclStubs; #ifdef __cplusplus @@ -6360,6 +6374,14 @@ extern TclStubs *tclStubsPtr; #define Tcl_GetBignumFromObj \ (tclStubsPtr->tcl_GetBignumFromObj) /* 558 */ #endif +#ifndef Tcl_TruncateChannel +#define Tcl_TruncateChannel \ + (tclStubsPtr->tcl_TruncateChannel) /* 559 */ +#endif +#ifndef Tcl_ChannelTruncateProc +#define Tcl_ChannelTruncateProc \ + (tclStubsPtr->tcl_ChannelTruncateProc) /* 560 */ +#endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ |