diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2006-10-06 20:12:44 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2006-10-06 20:12:44 (GMT) |
commit | df31eab4740be4bedad2fc605fb83d7d15dea986 (patch) | |
tree | bd93f05739cb94ef8b25e282eb2ea7d62b48ff2c | |
parent | 953efd5c470fe5c249198986186e65d71fcb7b89 (diff) | |
download | hdf5-df31eab4740be4bedad2fc605fb83d7d15dea986.zip hdf5-df31eab4740be4bedad2fc605fb83d7d15dea986.tar.gz hdf5-df31eab4740be4bedad2fc605fb83d7d15dea986.tar.bz2 |
[svn-r12730] Add _WIN32 macro since some windows applications need to use this macro rather than WIN32.
-rw-r--r-- | src/H5api_adpt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5api_adpt.h b/src/H5api_adpt.h index 79c6aa1..cd026e6 100644 --- a/src/H5api_adpt.h +++ b/src/H5api_adpt.h @@ -20,7 +20,7 @@ #ifndef H5API_ADPT_H #define H5API_ADPT_H -#if defined(WIN32) +#if defined(WIN32) || defined(_WIN32) #if defined(_HDF5DLL_) #pragma warning(disable: 4273) /* Disable the dll linkage warnings */ |