diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-12-14 21:59:53 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-12-14 21:59:53 (GMT) |
commit | 01560c9e48043b06e1609b1fe598950558cb3223 (patch) | |
tree | e49af12a1c38fbcbabb125f121f9086a64404861 | |
parent | 15b9ba46c02db1c8cd343c4e277cac8e61002911 (diff) | |
download | hdf5-01560c9e48043b06e1609b1fe598950558cb3223.zip hdf5-01560c9e48043b06e1609b1fe598950558cb3223.tar.gz hdf5-01560c9e48043b06e1609b1fe598950558cb3223.tar.bz2 |
Load plugins into vitual process space
-rw-r--r-- | src/H5PL.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ #define H5PL_HANDLE HINSTANCE /* Get a handle to a plugin library. Windows: TEXT macro handles Unicode strings */ -#define H5PL_OPEN_DLIB(S) LoadLibraryExA(S, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) +#define H5PL_OPEN_DLIB(S) LoadLibraryExA(S, NULL, LOAD_WITH_ALTERED_SEARCH_PATH | LOAD_LIBRARY_AS_IMAGE_RESOURCE) /* Get the address of a symbol in dynamic library */ #define H5PL_GET_LIB_FUNC(H,N) GetProcAddress(H,N) |