tcl_private.h 483 B

1234567891011121314151617181920
  1. #include "clish/shell.h"
  2. _BEGIN_C_DECL
  3. struct Tcl_Interp;
  4. typedef struct tclish_cookie_s tclish_cookie_t;
  5. struct tclish_cookie_s {
  6. struct Tcl_Interp *interp;
  7. };
  8. /* tclish callback functions */
  9. extern void tclish_show_result(struct Tcl_Interp *interp);
  10. extern clish_shell_init_fn_t tclish_init_callback;
  11. extern clish_shell_access_fn_t tclish_access_callback;
  12. extern clish_shell_script_fn_t tclish_script_callback;
  13. extern clish_shell_fini_fn_t tclish_fini_callback;
  14. _END_C_DECL