mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 14:39:24 -05:00
Fix a build failure under Visual Studio 2010.
Patch due to Brian K. White; we now condition our own declaration of DLL_DIRECTORY_COOKIE on whether the toolchain's headers had #defined it already, rather than trying to guess the answer to that from version-number macros. (Apparently everything that defines DLL_DIRECTORY_COOKIE does it by does seem to work in all my tests.)
This commit is contained in:
parent
e5dd1435e2
commit
2e66a0d260
@ -533,8 +533,9 @@ GLOBAL int restricted_acl;
|
|||||||
#ifndef LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR
|
#ifndef LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR
|
||||||
#define LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR 0x00000100
|
#define LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR 0x00000100
|
||||||
#endif
|
#endif
|
||||||
#if _MSC_VER < 1400
|
#ifndef DLL_DIRECTORY_COOKIE
|
||||||
typedef PVOID DLL_DIRECTORY_COOKIE;
|
typedef PVOID DLL_DIRECTORY_COOKIE;
|
||||||
|
DECLSPEC_IMPORT DLL_DIRECTORY_COOKIE WINAPI AddDllDirectory (PCWSTR NewDirectory);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user