12345678910111213141516171819202122232425262728293031323334353637 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #ifdef HAVE_LIBTCL
- #include <assert.h>
- #include <tcl.h>
- #include "tcl_private.h"
- bool_t tclish_init_callback(const clish_shell_t * shell)
- {
- int result;
- tclish_cookie_t *this = clish_shell__get_client_cookie(shell);
-
- this->interp = Tcl_CreateInterp();
- assert(NULL != this->interp);
-
- Tcl_InitMemory(interp);
- result = Tcl_Init(this->interp);
- if (TCL_OK != result) {
- tclish_show_result(this->interp);
- }
- Tcl_Preserve(this->interp);
- return BOOL_TRUE;
- }
- #endif
|