home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-10-26 | 1.7 KB | 53 lines | [TEXT/MPS ] |
- .\"
- .\" CreateExte.man
- .\"
- .\" Extended Tcl binary file search command.
- .\"----------------------------------------------------------------------------
- .\" Copyright 1992-1993 Karl Lehenbauer and Mark Diekhans.
- .\"
- .\" Permission to use, copy, modify, and distribute this software and its
- .\" documentation for any purpose and without fee is hereby granted, provided
- .\" that the above copyright notice appear in all copies. Karl Lehenbauer and
- .\" Mark Diekhans make no representations about the suitability of this
- .\" software for any purpose. It is provided "as is" without express or
- .\" implied warranty.
- .\"----------------------------------------------------------------------------
- .\" $Id: CreateExte.3,v 2.2 1993/07/31 03:45:25 markd Exp $
- .\"----------------------------------------------------------------------------
- .\"
- .TH Tcl_CreateExtendedInterp TCL "" "tcl"
- .ad b
- .BS
- .SH NAME
- Tcl_CreateExtendedInterp, Tcl_AddExtendedCmds, Tcl_AddExtendedLibCmds \- initialized Extended Tcl commands.
- '
- .SH SYNOPSIS
- .nf
- .ft CW
- #include <tclExtend.h>
-
- Tcl_Interp *
- Tcl_CreateExtendedInterp ();
-
- void
- Tcl_AddExtendedCmds (Tcl_Interp *interp);
-
- void
- Tcl_AddExtendedLibCmds (Tcl_Interp *interp);
- .ft R
- .fi
- .BE
- '
- .SH DESCRIPTION
- .PP
- \fBTcl_CreateExtendedInterp\fR creates a new interpreter structure and returns
- a pointer to the interpreter data stucture, as with \fBTcl_CreateInterp\fR.
- In addition, all Extended Tcl commands will be added to the interpreter.
- .PP
- \fBTcl_AddExtendedCmds\fR adds the Extended Tcl commands to the specified
- interpreter (except for the library commands that override that standard Tcl
- procedures).
- .PP
- \fBTcl_AddExtendedLibCmds\fR adds the Extended Tcl library management
- commands. These override the standard Tcl procedures.
-