1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
|
Tls_Init(Tcl_Interp *interp) /* Interpreter in which the package is
* to be made available. */
{
const char tlsTclInitScript[] = {
#include "tls.tcl.h"
};
int major, minor, patchlevel, release;
/*
* We only support Tcl 8.4 or newer
*/
if (
#ifdef USE_TCL_STUBS
Tcl_InitStubs(interp, "8.4", 0)
#else
|
<
<
|
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
|
Tls_Init(Tcl_Interp *interp) /* Interpreter in which the package is
* to be made available. */
{
const char tlsTclInitScript[] = {
#include "tls.tcl.h"
};
/*
* We only support Tcl 8.4 or newer
*/
if (
#ifdef USE_TCL_STUBS
Tcl_InitStubs(interp, "8.4", 0)
#else
|