diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-19 16:12:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-19 16:12:35 (GMT) |
commit | 123f5954787216f58928f41149aecdfd49f112f0 (patch) | |
tree | 70dc99b92d3ba7e2dd0e993045ee9ed16ed33f03 /generic/tclInt.decls | |
parent | d61767f9a7d9b5fee5a3e2f460ba5239180f6e8e (diff) | |
download | tcl-123f5954787216f58928f41149aecdfd49f112f0.zip tcl-123f5954787216f58928f41149aecdfd49f112f0.tar.gz tcl-123f5954787216f58928f41149aecdfd49f112f0.tar.bz2 |
bug 3508771: load tclreg.dll in cygwin tclsh
(works on cygwin, on other UNIX not yet complete)
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 4fb88c6..e3d3a08 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -982,8 +982,9 @@ declare 8 unix { # Added in 8.1: +# On non-cygwin, this is actually a reference to TclpCreateTempFile declare 9 unix { - TclFile TclpCreateTempFile(CONST char *contents) + int TclWinGetPlatformId(void) } # Added in 8.4: @@ -1007,3 +1008,7 @@ declare 13 unix { char * TclpInetNtoa(struct in_addr addr) } +declare 22 unix { + TclFile TclpCreateTempFile(CONST char *contents) +} + |