diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-12-14 23:00:07 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-12-14 23:00:07 (GMT) |
commit | f45cd3aec4ec5394f8ca683ab191f5f3ebeb9934 (patch) | |
tree | fd5fe39ced811ca16a5a1bdbb2e75a97ec53eee1 | |
parent | 01560c9e48043b06e1609b1fe598950558cb3223 (diff) | |
download | hdf5-f45cd3aec4ec5394f8ca683ab191f5f3ebeb9934.zip hdf5-f45cd3aec4ec5394f8ca683ab191f5f3ebeb9934.tar.gz hdf5-f45cd3aec4ec5394f8ca683ab191f5f3ebeb9934.tar.bz2 |
Revert "Load plugins into vitual process space"
This reverts commit 01560c9e48043b06e1609b1fe598950558cb3223.
-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 | LOAD_LIBRARY_AS_IMAGE_RESOURCE) +#define H5PL_OPEN_DLIB(S) LoadLibraryExA(S, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) /* Get the address of a symbol in dynamic library */ #define H5PL_GET_LIB_FUNC(H,N) GetProcAddress(H,N) |