diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-10-15 20:26:57 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-10-15 20:26:57 (GMT) |
commit | cf2f280c08cae3a18c4d328877f8fbf638de36bf (patch) | |
tree | a2743ac61001b229d56edcfeb695809658593efd /generic/tclCompile.h | |
parent | d83f436f3c6920fd6099965bbf44f874a9310a12 (diff) | |
download | tcl-cf2f280c08cae3a18c4d328877f8fbf638de36bf.zip tcl-cf2f280c08cae3a18c4d328877f8fbf638de36bf.tar.gz tcl-cf2f280c08cae3a18c4d328877f8fbf638de36bf.tar.bz2 |
* generic/tclInt.decls (TclExpandCodeArray,TclGetInstructionTable):
Added to internal stubs table. Tclcompiler (Tclpro project)
needs them if used as loadable package under Windows. Changed
signatures. We don't want to describe compiler internal
structures in "tclInt.h".
* generic/tclCompile.h: S.a. Removed function declarations.
* generic/tclCompile.c: S.a. Adapted to changed signatures.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 57b24fe..fb922bc 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -7,7 +7,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.16 2001/09/17 11:51:58 msofer Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.17 2001/10/15 20:26:57 andreas_kupries Exp $ */ #ifndef _TCLCOMPILATION @@ -775,11 +775,8 @@ EXTERN void TclEmitForwardJump _ANSI_ARGS_((CompileEnv *envPtr, EXTERN ExceptionRange * TclGetExceptionRangeForPc _ANSI_ARGS_(( unsigned char *pc, int catchOnly, ByteCode* codePtr)); -EXTERN InstructionDesc * TclGetInstructionTable _ANSI_ARGS_(()); EXTERN int TclExecuteByteCode _ANSI_ARGS_((Tcl_Interp *interp, ByteCode *codePtr)); -EXTERN void TclExpandCodeArray _ANSI_ARGS_(( - CompileEnv *envPtr)); EXTERN void TclExpandJumpFixupArray _ANSI_ARGS_(( JumpFixupArray *fixupArrayPtr)); EXTERN void TclFinalizeAuxDataTypeTable _ANSI_ARGS_((void)); |