Tk_InitStubs(3tk) | Tk Library Procedures | Tk_InitStubs(3tk) |
Tk_InitStubs - initialize the Tk stubs mechanism
#include <tk.h> const char * Tk_InitStubs(interp, version, exact)
The Tcl stubs mechanism defines a way to dynamically bind extensions to a particular Tcl implementation at run time. the stubs mechanism requires no changes to applications incorporating Tcl/Tk interpreters. Only developers creating C-based Tcl/Tk extensions need to take steps to use the stubs mechanism with their extensions. See the Tcl_InitStubs page for more information.
Enabling the stubs mechanism for a Tcl/Tk extension requires the following steps:
Tk_InitStubs attempts to initialize the Tk stub table pointers and ensure that the correct version of Tk is loaded. In addition to an interpreter handle, it accepts as arguments a version number and a Boolean flag indicating whether the extension requires an exact version match or not. If exact is 0, then the extension is indicating that newer versions of Tk are acceptable as long as they have the same major version number as version; non-zero means that only the specified version is acceptable. Tcl_InitStubs returns a string containing the actual version of Tk satisfying the request, or NULL if the Tk version is not acceptable, does not support the stubs mechanism, or any other error condition occurred.
Tcl_InitStubs
stubs
8.4 | Tk |