14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
* tclSSL (Colin McCormack, Shared Technology)
* SSLtcl (Peter Antman)
*
*/
#ifndef _TLS_H
#define _TLS_H
#include <tcl.h>
/*
* Initialization routines -- our entire public C API.
*/
int Tls_Init(Tcl_Interp *interp);
int Tls_SafeInit(Tcl_Interp *interp);
|
>
>
>
>
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
* tclSSL (Colin McCormack, Shared Technology)
* SSLtcl (Peter Antman)
*
*/
#ifndef _TLS_H
#define _TLS_H
#define mp_digit __TCL_MP_DIGIT
#define mp_int __TCL_MP_INT
#include <tcl.h>
#undef mp_digit
#undef mp_int
/*
* Initialization routines -- our entire public C API.
*/
int Tls_Init(Tcl_Interp *interp);
int Tls_SafeInit(Tcl_Interp *interp);
|