Differences From Artifact [5e9dbae35a]:
- File tls.h — part of check-in [2771dc7670] at 2016-12-10 05:02:02 on branch trunk — More modernization of the code (user: rkeene, size: 824) [annotate] [blame] [check-ins using] [more...]
To Artifact [32e35217c8]:
- File tls.h — part of check-in [bd8b53ced2] at 2019-05-29 18:52:18 on branch x-header-work — Try to find headers in a specific path and do not allow "mp_int"/"mp_digit" to conflict with other things (user: rkeene, size: 916) [annotate] [blame] [check-ins using]
︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 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); |
︙ |