diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-20 09:58:52 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-20 09:58:52 (GMT) |
commit | 3e01654c1a5a2ba61662be868e3ad462906c7b0f (patch) | |
tree | 0787c7eb92e0ef00e18ed6b89cdf04287058cec8 /generic/tclInt.decls | |
parent | 2c7e68e5aeb40ae5340c57d4f80ef18a56a7db22 (diff) | |
parent | 23f5b19d027c7c6f2eec97dd900569b56a9087f7 (diff) | |
download | tcl-3e01654c1a5a2ba61662be868e3ad462906c7b0f.zip tcl-3e01654c1a5a2ba61662be868e3ad462906c7b0f.tar.gz tcl-3e01654c1a5a2ba61662be868e3ad462906c7b0f.tar.bz2 |
[Bug 3508771] load tclreg.dll in cygwin tclsh
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index e30379e..d06faf2 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -1107,8 +1107,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: @@ -1159,6 +1160,13 @@ declare 19 macosx { void TclMacOSXNotifierAddRunLoopMode(CONST void *runLoopMode) } +declare 22 unix { + TclFile TclpCreateTempFile(CONST char *contents) +} +declare 29 unix { + int TclWinCPUID(unsigned int index, unsigned int *regs) +} + # Local Variables: # mode: tcl |