diff options
-rw-r--r-- | unix/tclUnixPort.h | 6 | ||||
-rw-r--r-- | win/tclWinError.c | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 22872e4..5bb61a2 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -79,6 +79,12 @@ typedef off_t Tcl_SeekOffset; #endif #ifdef __CYGWIN__ +# define WSAEWOULDBLOCK 10035 +# define HINSTANCE void * +# define HANDLE void * +# define DWORD unsigned int +# define SOCKET unsigned int +# typedef char TCHAR; # define USE_PUTENV 1 # define USE_PUTENV_FOR_UNSET 1 /* On Cygwin, the environment is imported from the Cygwin DLL. */ diff --git a/win/tclWinError.c b/win/tclWinError.c index 969780d..63e9598 100644 --- a/win/tclWinError.c +++ b/win/tclWinError.c @@ -331,11 +331,6 @@ static const unsigned char wsaErrorTable[] = { EREMOTE /* WSAEREMOTE */ }; -#ifdef __CYGWIN__ -# include <windows.h> -# define DWORD unsigned int -#endif - /* *---------------------------------------------------------------------- * |