diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-05-03 15:27:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-05-03 15:27:06 (GMT) |
commit | d329be0030f6800be40dc3606491b8880814d336 (patch) | |
tree | eae05bcb0f55d1af06cb30d2735d6329ed87a379 /win/tclWinInt.h | |
parent | cfdf3d1f29001198f2afdea91a595527acdc2802 (diff) | |
parent | 1c8d056c93bd79b5356acb7646a97a97deb710b5 (diff) | |
download | tcl-d329be0030f6800be40dc3606491b8880814d336.zip tcl-d329be0030f6800be40dc3606491b8880814d336.tar.gz tcl-d329be0030f6800be40dc3606491b8880814d336.tar.bz2 |
Use GetModuleHandle() in stead of LoadLibrary() when the handle is needed for an already loaded dll.
Fix filesystem-1.52 (only works correctly on UNIX)
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 76f5f68..43799d0 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -38,7 +38,7 @@ typedef struct TclWinProcs { BOOL (WINAPI *cancelSynchronousIo)(HANDLE); } TclWinProcs; -MODULE_SCOPE TclWinProcs *tclWinProcs; +MODULE_SCOPE TclWinProcs tclWinProcs; /* * Some versions of Borland C have a define for the OSVERSIONINFO for |