diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-03-15 16:29:50 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-03-15 16:29:50 (GMT) |
commit | d1efd01d81c6ab8a8172b42147ecb529524894b3 (patch) | |
tree | c0ceec939fa665f6e04a9c562e0e7a6bd8cd7f6d /generic/tclInt.decls | |
parent | 8fcf4b23507f94dd3ea8de33640f7cf34431a022 (diff) | |
download | tcl-d1efd01d81c6ab8a8172b42147ecb529524894b3.zip tcl-d1efd01d81c6ab8a8172b42147ecb529524894b3.tar.gz tcl-d1efd01d81c6ab8a8172b42147ecb529524894b3.tar.bz2 |
replaced 'long' times with wides, to cope with Win64
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 71434b5..82d5e49 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -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.decls,v 1.59.2.5 2004/10/28 16:06:32 kennykb Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.59.2.6 2005/03/15 16:29:53 kennykb Exp $ library tcl @@ -124,8 +124,8 @@ declare 25 generic { # char * TclGetCwd(Tcl_Interp *interp) # } declare 27 generic { - int TclGetDate(char *p, unsigned long now, long zone, - unsigned long *timePtr) + int TclGetDate(char *p, Tcl_WideInt now, long zone, + Tcl_WideInt *timePtr) } declare 28 generic { Tcl_Channel TclpGetDefaultStdChannel(int type) @@ -312,7 +312,7 @@ declare 77 generic { } declare 78 generic { - int TclpGetTimeZone(unsigned long time) + int TclpGetTimeZone(Tcl_WideInt time) } # Replaced by Tcl_FSListVolumes in 8.4: #declare 79 generic { |