diff options
Diffstat (limited to 'win/tclWinInit.c')
-rw-r--r-- | win/tclWinInit.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c index c590865..25075b1 100644 --- a/win/tclWinInit.c +++ b/win/tclWinInit.c @@ -76,12 +76,6 @@ typedef struct { #define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF #endif - -/* - * Windows version dependend functions - */ -TclWinProcs tclWinProcs; - /* * The following arrays contain the human readable strings for the Windows * platform and processor values. @@ -138,7 +132,6 @@ TclpInitPlatform(void) { WSADATA wsaData; WORD wVersionRequested = MAKEWORD(2, 2); - HMODULE handle; tclPlatform = TCL_PLATFORM_WINDOWS; @@ -157,14 +150,6 @@ TclpInitPlatform(void) TclWinInit(GetModuleHandle(NULL)); #endif - - /* - * Fill available functions depending on windows version - */ - handle = GetModuleHandle(TEXT("KERNEL32")); - tclWinProcs.cancelSynchronousIo = - (BOOL (WINAPI *)(HANDLE)) GetProcAddress(handle, - "CancelSynchronousIo"); } /* |