diff options
author | hobbs <hobbs> | 2010-08-04 19:35:22 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2010-08-04 19:35:22 (GMT) |
commit | 28ba9b68895dac52cf46906480875eb1d4e2cd75 (patch) | |
tree | aaadf08044448808ae487b9e9d5eb5e8961a88e6 /win/tclWinInt.h | |
parent | 2ac203fc20c03c871fcacad69347193fb37ead91 (diff) | |
download | tcl-28ba9b68895dac52cf46906480875eb1d4e2cd75.zip tcl-28ba9b68895dac52cf46906480875eb1d4e2cd75.tar.gz tcl-28ba9b68895dac52cf46906480875eb1d4e2cd75.tar.bz2 |
* 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.
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 8d02d0e..b60991d 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.35 2010/03/07 14:39:25 nijtmans Exp $ + * RCS: @(#) $Id: tclWinInt.h,v 1.36 2010/08/04 19:35:22 hobbs Exp $ */ #ifndef _TCLWININT @@ -66,7 +66,7 @@ typedef struct TclWinProcs { DWORD (WINAPI *getTempPathProc)(DWORD, TCHAR *); BOOL (WINAPI *getVolumeInformationProc)(const TCHAR *, TCHAR *, DWORD, LPDWORD, LPDWORD, LPDWORD, TCHAR *, DWORD); - HINSTANCE (WINAPI *loadLibraryProc)(const TCHAR *); + HINSTANCE (WINAPI *loadLibraryExProc)(const TCHAR *, HANDLE, DWORD); TCHAR (WINAPI *lstrcpyProc)(TCHAR *, const TCHAR *); BOOL (WINAPI *moveFileProc)(const TCHAR *, const TCHAR *); BOOL (WINAPI *removeDirectoryProc)(const TCHAR *); |