diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-03-18 20:44:02 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-03-18 20:44:02 (GMT) |
commit | 23635d656a7ebb30f082960a27174453a27e96f6 (patch) | |
tree | 3155914a33e91a6be2cfc8ea6b6475509fcf9b58 | |
parent | ebfebfd7d5a9856eacf94fd1a77867fe757543e5 (diff) | |
download | hdf5-23635d656a7ebb30f082960a27174453a27e96f6.zip hdf5-23635d656a7ebb30f082960a27174453a27e96f6.tar.gz hdf5-23635d656a7ebb30f082960a27174453a27e96f6.tar.bz2 |
[svn-r23368] Correct names and add includes for windows
-rw-r--r-- | src/H5PL.c | 5 | ||||
-rw-r--r-- | src/H5PLpkg.h | 2 | ||||
-rw-r--r-- | src/H5PLprivate.h | 13 |
3 files changed, 16 insertions, 4 deletions
@@ -286,7 +286,6 @@ H5PL_find(H5PL_type_t plugin_type, int type_id, char *dir, void **info) { char *pathname = NULL; struct dirent *dp = NULL; - struct stat my_stat; WIN32_FIND_DATA fdFile; HANDLE hFind = NULL; @@ -375,7 +374,7 @@ H5PL_open(H5PL_type_t pl_type, char *libname, int pl_id, void **pl_info) /*fprintf(stderr, "not open dl library: %s\n", H5PL_CLR_ERR);*/ HGOTO_DONE(ret_value) - H5PL_CLR_ERR; /*clear error*/ + H5PL_CLR_ERROR; /*clear error*/ /* Return a handle for the function H5PL_get_plugin_info in the dynamic library. * The plugin library is suppose to define this function. */ @@ -448,7 +447,7 @@ fprintf(stderr, "%s: H5PL_table_used_g=%d, id=%d\n", FUNC, H5PL_table_used_g, (H for(i=0; i<H5PL_table_used_g; i++) { if((plugin_type == (H5PL_table_g[i]).pl_type) && (type_id == (H5PL_table_g[i]).pl_id)) { if(NULL == (H5PL_get_plugin_info = H5PL_GET_LIB_FUNC((H5PL_table_g[i]).handle, "H5PL_get_plugin_info"))) - HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get function: %s", H5PL_CLR_ERR) + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get function: %s", H5PL_CLR_ERROR) if(NULL == (plugin_info = (*H5PL_get_plugin_info)())) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get plugin info") diff --git a/src/H5PLpkg.h b/src/H5PLpkg.h index 6ab0aa9..4267e38 100644 --- a/src/H5PLpkg.h +++ b/src/H5PLpkg.h @@ -48,7 +48,7 @@ #define H5PL_ERROR DWORD dw; char *error /* Clear error - nothing to do */ -#define H5PLG_CLR_ERROR +#define H5PL_CLR_ERROR /* Print error message */ #define H5PL_CHECK_ERR(R) { \ diff --git a/src/H5PLprivate.h b/src/H5PLprivate.h index 197212a..7d363da 100644 --- a/src/H5PLprivate.h +++ b/src/H5PLprivate.h @@ -26,6 +26,19 @@ /* Private headers needed by this file */ #include "H5private.h" /* Generic Functions */ +#ifdef H5_HAVE_WIN32_API +/* The following two defines must be before any windows headers are included */ +#define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */ +#define NOGDI /* Exclude Graphic Display Interface macros */ + +#ifdef H5_HAVE_WINSOCK2_H +#include <winsock2.h> +#endif + +#include <windows.h> + +#endif /*H5_HAVE_WIN32_API*/ + #ifdef H5_HAVE_DLFCN_H #include <dlfcn.h> #endif |