diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-22 21:34:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-22 21:34:27 (GMT) |
commit | 6efd3e5fb18780e9e765151e807ed04c34293aa6 (patch) | |
tree | a0689274b7976a41688599a7ac390b3ea85b3966 /generic/tclInt.decls | |
parent | 90b55a0053849e5a6c0483f716de14cb4639ce08 (diff) | |
download | tcl-6efd3e5fb18780e9e765151e807ed04c34293aa6.zip tcl-6efd3e5fb18780e9e765151e807ed04c34293aa6.tar.gz tcl-6efd3e5fb18780e9e765151e807ed04c34293aa6.tar.bz2 |
add TclWinConvertError and TclWinConvertWSAError for cygwin
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 3d84cb2..0595050 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -941,11 +941,13 @@ declare 29 win { # Pipe channel functions +# On non-cygwin, this is actually a reference to TclGetAndDetachPids declare 0 unix { - void TclGetAndDetachPids(Tcl_Interp *interp, Tcl_Channel chan) + void TclWinConvertError(unsigned int errCode) } +# On non-cygwin, this is actually a reference to TclpCloseFile declare 1 unix { - int TclpCloseFile(TclFile file) + void TclWinConvertWSAError(unsigned int errCode) } declare 2 unix { Tcl_Channel TclpCreateCommandChannel(TclFile readFile, @@ -1038,6 +1040,12 @@ declare 28 unix { declare 29 unix { int TclWinCPUID(unsigned int index, unsigned int *regs) } +declare 30 unix { + void TclGetAndDetachPids(Tcl_Interp *interp, Tcl_Channel chan) +} +declare 31 unix { + int TclpCloseFile(TclFile file) +} # Local Variables: |