diff options
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 5885e15..6c87307 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.157 2003/04/16 23:33:43 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.158 2003/06/09 22:48:32 andreas_kupries Exp $ */ #ifndef _TCL @@ -2196,6 +2196,16 @@ typedef struct Tcl_Parse { */ typedef unsigned short Tcl_UniChar; +/* TIP #59: The following structure is used in calls + * 'Tcl_RegisterConfig' to provide the system with the embedded + * configuration data. + */ + +typedef struct Tcl_Config { + CONST char* key; /* Configuration key to register. ASCII encoded, thus UTF-8 */ + CONST char* value; /* The value associated with the key. System encoding */ +} Tcl_Config; + /* * Deprecated Tcl procedures: |