diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-16 07:21:45 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-16 07:21:45 (GMT) |
commit | b7d82a478eafbde7dbe7b6bfb1630becfed49f39 (patch) | |
tree | 6beafd96a78dee9b8b15bbaae1efe572b674a2c3 /include/md5.h | |
parent | 70a4c1665fae925e7fb75ed1d9f1e2153b998ed7 (diff) |
Attempt to fix compilations in MSVS.
Check if compiling on Windows. Use __inline instead of inline.
Diffstat (limited to 'include/md5.h')
-rw-r--r-- | include/md5.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/md5.h b/include/md5.h index 15719fd..3652594 100644 --- a/include/md5.h +++ b/include/md5.h @@ -49,6 +49,12 @@ #ifndef md5_INCLUDED # define md5_INCLUDED +#ifndef USE_WINDOWS +#if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) +#define USE_WINDOWS +#endif /* win32... */ +#endif /* not defined USE_WINDOWS */ + /* * This package supports both compile-time and run-time determination of CPU * byte order. If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be |