diff options
author | andreas_kupries <andreas_kupries@noemail.net> | 2010-11-03 22:10:47 (GMT) |
---|---|---|
committer | andreas_kupries <andreas_kupries@noemail.net> | 2010-11-03 22:10:47 (GMT) |
commit | ae50b5c270546f38e0074ccb8c509597300c84c8 (patch) | |
tree | 33c2131e08e55f66bfb705db9f60afb9e533003a /win/tclWinInt.h | |
parent | 9bcf72d4b03e0608c9e3111bfc53ec9617dfed82 (diff) | |
download | tcl-ae50b5c270546f38e0074ccb8c509597300c84c8.zip tcl-ae50b5c270546f38e0074ccb8c509597300c84c8.tar.gz tcl-ae50b5c270546f38e0074ccb8c509597300c84c8.tar.bz2 |
Backported from 8.6 (see 2010-08-04).
* win/tclWin32Dll.c (asciiProcs, unicodeProcs):
* win/tclWinLoad.c (TclpDlopen): 'load' use LoadLibraryEx with
* win/tclWinInt.h (TclWinProcs): LOAD_WITH_ALTERED_SEARCH_PATH to
prefer dependent DLLs in same dir as loaded DLL.
FossilOrigin-Name: 296bc1241dd545b286e34fb06ca930ff5645b49b
Diffstat (limited to 'win/tclWinInt.h')
-rw-r--r-- | win/tclWinInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h index 3b06f50..3a87623 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinInt.h,v 1.20.2.5 2006/03/10 10:35:25 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinInt.h,v 1.20.2.6 2010/11/03 22:10:48 andreas_kupries Exp $ */ #ifndef _TCLWININT @@ -85,7 +85,7 @@ typedef struct TclWinProcs { DWORD (WINAPI *getTempPathProc)(DWORD, WCHAR *); BOOL (WINAPI *getVolumeInformationProc)(CONST TCHAR *, WCHAR *, DWORD, LPDWORD, LPDWORD, LPDWORD, WCHAR *, DWORD); - HINSTANCE (WINAPI *loadLibraryProc)(CONST TCHAR *); + HINSTANCE (WINAPI *loadLibraryExProc)(const TCHAR *, HANDLE, DWORD); TCHAR (WINAPI *lstrcpyProc)(WCHAR *, CONST TCHAR *); BOOL (WINAPI *moveFileProc)(CONST TCHAR *, CONST TCHAR *); BOOL (WINAPI *removeDirectoryProc)(CONST TCHAR *); |