diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-25 09:16:11 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-11-25 09:16:11 (GMT) |
commit | 1aa3608a1c3ecda44c952d36c2f2bbd4f23cedc4 (patch) | |
tree | 7f9ec1d4dd90084fd564ac43244e85fbc7275cd5 /generic/tcl.h | |
parent | 35776acac0c0658191156c70b24cc7d16493610b (diff) | |
download | tcl-1aa3608a1c3ecda44c952d36c2f2bbd4f23cedc4.zip tcl-1aa3608a1c3ecda44c952d36c2f2bbd4f23cedc4.tar.gz tcl-1aa3608a1c3ecda44c952d36c2f2bbd4f23cedc4.tar.bz2 |
Remove the Tcl_GetValue() functionality. This can always be developed separately
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 7cb45b1..f1e4590 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -1108,14 +1108,6 @@ typedef struct Tcl_DString { #define TCL_LINK_READ_ONLY 0x80 /* - * Types for Tcl_GetValue(): - */ - -#define TCL_TYPE_D(type) (0x100 | (int)sizeof(type)) /* float/double/long double */ -#define TCL_TYPE_I(type) (0x200 | (int)sizeof(type)) /* signed integer */ -#define TCL_TYPE_U(type) (0x300 | (int)sizeof(type)) /* unsigned integer */ - -/* *---------------------------------------------------------------------------- * Forward declarations of Tcl_HashTable and related types. */ |