1234567891011121314151617181920 |
- #include "clish/shell.h"
- _BEGIN_C_DECL
- struct Tcl_Interp;
- typedef struct tclish_cookie_s tclish_cookie_t;
- struct tclish_cookie_s {
- struct Tcl_Interp *interp;
- };
- /* tclish callback functions */
- extern void tclish_show_result(struct Tcl_Interp *interp);
- extern clish_shell_init_fn_t tclish_init_callback;
- extern clish_shell_access_fn_t tclish_access_callback;
- extern clish_shell_script_fn_t tclish_script_callback;
- extern clish_shell_fini_fn_t tclish_fini_callback;
- _END_C_DECL
|