diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-09-17 22:06:19 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-09-17 22:06:19 (GMT) |
commit | 4ce4e4d5af827805c97d9f0c2a3d2953922f15d0 (patch) | |
tree | cdfe46e9772fe9311d96d077f0f94847e4167487 /generic/tclInt.h | |
parent | fc4d1c3bfa9a6e5870ff9cee0cf575bd625d5b68 (diff) | |
download | tcl-4ce4e4d5af827805c97d9f0c2a3d2953922f15d0.zip tcl-4ce4e4d5af827805c97d9f0c2a3d2953922f15d0.tar.gz tcl-4ce4e4d5af827805c97d9f0c2a3d2953922f15d0.tar.bz2 |
more changes for bison support
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 8633e6e..079a01a 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.172 2004/08/18 19:58:59 kennykb Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.173 2004/09/17 22:06:24 kennykb Exp $ */ #ifndef _TCLINT @@ -2553,5 +2553,40 @@ EXTERN void TclDbInitNewObj _ANSI_ARGS_((Tcl_Obj *objPtr)); # undef TCL_STORAGE_CLASS # define TCL_STORAGE_CLASS DLLIMPORT +/* + * Data structure used to hold information returned from TclGetDate + */ + +typedef struct TclGetDateInfo { + + time_t dateYear; + time_t dateMonth; + time_t dateDay; + int dateHaveDate; + + time_t dateHour; + time_t dateMinutes; + time_t dateSeconds; + int dateMeridian; + int dateHaveTime; + + time_t dateTimezone; + int dateDSTmode; + int dateHaveZone; + + time_t dateRelMonth; + time_t dateRelDay; + time_t dateRelSeconds; + int dateHaveRel; + + time_t dateMonthOrdinal; + int dateHaveOrdinalMonth; + + time_t dateDayOrdinal; + time_t dateDayNumber; + int dateHaveDay; + +} TclGetDateInfo; + #endif /* _TCLINT */ |