diff options
author | oehhar <harald.oehlmann@elmicron.de> | 2014-02-25 08:02:17 (GMT) |
---|---|---|
committer | oehhar <harald.oehlmann@elmicron.de> | 2014-02-25 08:02:17 (GMT) |
commit | 1186a5d2a99856b462ae56281a6438e80ce9d2c1 (patch) | |
tree | f565eb7d145dd3bfe969e419fa5343061fc8cd7f /win/tclWinInt.h | |
parent | eb24399a17b85fad292fe5137bb9ea641f8b7896 (diff) | |
parent | bc47ed9728afc2b9554570326e2afe173fae22d7 (diff) | |
download | tcl-1186a5d2a99856b462ae56281a6438e80ce9d2c1.zip tcl-1186a5d2a99856b462ae56281a6438e80ce9d2c1.tar.gz tcl-1186a5d2a99856b462ae56281a6438e80ce9d2c1.tar.bz2 |
Do not reopen a win serial channel for serial detection. There are issues with some Bluetooth virtual com. Fix bug [2413550], patch by Rolf Schroedter
Diffstat (limited to 'win/tclWinInt.h')
-rw-r--r-- | win/tclWinInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h index c7066bb..9df424f 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -66,7 +66,7 @@ MODULE_SCOPE Tcl_Channel TclWinOpenFileChannel(HANDLE handle, char *channelName, int permissions, int appendMode); MODULE_SCOPE Tcl_Channel TclWinOpenSerialChannel(HANDLE handle, char *channelName, int permissions); -MODULE_SCOPE HANDLE TclWinSerialReopen(HANDLE handle, const TCHAR *name, +MODULE_SCOPE HANDLE TclWinSerialOpen(HANDLE handle, const TCHAR *name, DWORD access); MODULE_SCOPE int TclWinSymLinkCopyDirectory(const TCHAR *LinkOriginal, const TCHAR *LinkCopy); |