Rechercher une page de manuel
Tcl_CallWhenDeleted
Langue: en
Version: 7.0 (CentOS - 06/07/09)
Section: 3 (Bibliothèques de fonctions)
NAME
Tcl_CallWhenDeleted, Tcl_DontCallWhenDeleted - Arrange for callback when interpreter is deletedSYNOPSIS
#include <tcl.h> Tcl_CallWhenDeleted(interp, proc, clientData) Tcl_DontCallWhenDeleted(interp, proc, clientData)
ARGUMENTS
- Tcl_Interp *interp (in)
Interpreter with which to associated callback. - Tcl_InterpDeleteProc *proc (in)
Procedure to call when interp is deleted. - ClientData clientData (in)
Arbitrary one-word value to pass to proc.
DESCRIPTION
Tcl_CallWhenDeleted arranges for proc to be called by Tcl_DeleteInterp if/when interp is deleted at some future time. Proc will be invoked just before the interpreter is deleted, but the interpreter will still be valid at the time of the call. Proc should have arguments and result that match the type Tcl_InterpDeleteProc:
-
typedef void Tcl_InterpDeleteProc( ClientData clientData, Tcl_Interp *interp);
Tcl_DontCallWhenDeleted cancels a previous call to Tcl_CallWhenDeleted with the same arguments, so that proc won't be called after all when interp is deleted. If there is no deletion callback that matches interp, proc, and clientData then the call to Tcl_DontCallWhenDeleted has no effect.
KEYWORDS
callback, delete, interpreterContenus ©2006-2024 Benjamin Poulain
Design ©2006-2024 Maxime Vantorre